EE3611-POWER SYSTEM LABORATORY MANUAL
EE3611-POWER SYSTEM LABORATORY MANUAL
SIMULATION
LABORATORY
INDEX
PAGE
S. No. DATE NAME OF THE EXPERIMENT REMARKS
NO.
5 Fault Analysis 41
EXERCISE 1
AIM
To compute bus admittance matrix for the given power system network using
THEORY
Bus admittance matrix is often used in power system studies. In most of the power
system studies, it is necessary to form Y-Bus matrix of the system by considering certain
For example, in load flow analysis, it is necessary to form Y-Bus matrix taking in to
account only line data and not taking into account the generator impedance, transformer
impedances or load impedances. In short circuit analysis, the generator transient reactance’s
and transformer leakage impedances must be taken into account in addition to line data
In stability analysis, line data, the generator transient reactances, transformer leakage
impedances and equivalent load impedances to ground must be taken into account in
computing Y-bus matrix. Y-Bus may be computed by inspection method, only if there is
negligible mutual coupling between the lines. Every transmission line will be represented by
the nominal ߨequivalent. Shunt admittances are added to the diagonal elements of Y-bus
corresponding to the buses at which these are connected. The off diagonal elements are
unaffected by shunt admittances. The equivalent circuit of tap - changing transformer may be
considered in forming Y-Bus matrix, if tap changing transformers are present in the system.
The dimension of the [Y-Bus] matrix is (n x n) where n is the total number of buses in
the system other than reference bus which is the ground bus. In a power network, each bus is
Department of EEE, St. Anne’s College of Engineering & Technology, Panruti ~1~
EE 3611 Power System Laboratory
connected only to a few other buses. So, the [Y-Bus] of a large network is highly sparse. This
property is not evident in small systems, but in systems with hundreds of buses, the sparsity is
Yii Yij
Generalized [Y-Bus] =
Yji Yjj
Each diagonal term Yii (i = 1,2,.....n) is called the self admittance or driving point
admittance of bus i and equals the sum of all admittances terminating on the particular bus.
buses i and j Yij = - yij, where yij is net admittance connected between buses i and j, n = total
Step (1) : Initialize [Y-Bus] matrix, that is replace all entries by zero
n
Yii= [ ¦ y ij ]+ yio= diagonal element
j 1
J zi
Department of EEE, St. Anne’s College of Engineering & Technology, Panruti ~2~
FLOWCHART FOR FORMATION OF Y - BUS MATRIX
START
Consider Line l = 1
i = sb (ll); j = eb (ll)
No Is Yes
l=l+1 l = NL? Print Y Bus
STOP
The [Y-Bus] matrix is formed by inspection method for a three-bus sample power
system. The one line diagram and line data are given below.
Department of EEE, St. Anne’s College of Engineering & Technology, Panruti ~3~
SINGLE - LINE DIAGRAM
G G
Line Specification
Half-line
Series Impedance charging Rating
Line no. Start bus End bus
(P.U.) admittance (MW)
(P.U)
1 1 2 0.001 + j0.01 0.001 60
2 2 3 0.002+ j0.02 0.0005 40
3 3 4 0.004 + j0.03 0.0015 60
4 4 5 0.003 + j0.01 0.0001 60
5 5 1 0.004 + j0.03 0.0005 40
6 2 5 0.001 + j0.04 0.002 60
Department of EEE, St. Anne’s College of Engineering & Technology, Panruti ~4~
Department of EEE, St. Anne’s College of Engineering & Technology, Panruti ~5~
Department of EEE, St. Anne’s College of Engineering & Technology, Panruti ~6~
Department of EEE, St. Anne’s College of Engineering & Technology, Panruti ~7~
ybus.m (Program for the Y-BUS formation)
RESULT
Thus for a given system bus admittance matrix was formulated using Mi – Power
Department of EEE, St. Anne’s College of Engineering & Technology, Panruti ~8~
FORMATION OF Z BUS MATRIX
EXERCISE 2
AIM
To obtain the bus impedance matrix Z – bus of the given power system network using
THEORY
Z - bus matrix is an important matrix used in different kinds of power system studies
In short circuit analysis, the generator and transformer impedances must be taken into
account. In contingency analysis, the shunt elements are neglected while forming the Z-bus
Z-bus can be easily obtained by inverting the Y-bus formed by inspection method or
by analytical method. Taking inverse of the Y-bus for large systems is time consuming;
Moreover, modification in the system requires the whole process to be repeated to reflect the
changes in the system. In such cases, the Z–bus is computed by Z–bus building algorithm.
Department of EEE, St. Anne’s College of Engineering & Technology, Panruti ~9~
ALGORITHM FOR FORMATION OF Z-BUS MATRIX
Step 1 : Read the values such as number of lines, number of buses and line data,
Step 2 : Initialize Ybus matrix. Y-bus [i] [j] = complex (0.0,0.0) for all values of i and
Step 4 : Modify the Ybus matrix by adding the combined transformer and the generator
Step 5 : Compute the Z– bus matrix by inverting the modified Ybus matrix.
Step 6 : Check the inversion by multiplying modified Ybus and Z-bus matrices to see
whether the resulting matrix is unity matrix or not. If it is unity matrix, the
result is correct.
START
STOP
Z – bus matrix is an important matrix used in different kinds of power system studies
In short circuit analysis, the generator and transformer impedances must be taken into
account. In contingency analysis, the shunt elements are neglected while forming the Z – bus
This can be easily obtained by inverting the Ybus formed by inspection method or by
analytical method.
Taking inverse of the Ybus for large systems is time consuming, more over,
modification in the system requires the whole process to be repeated to reflect the changes in
the system. In such cases, the Z – bus is computed by Z- bus building algorithm.
SIMULATION
In this exercise, Z-bus for the system is developed by first forming the Ybus and then
inverting it to get the Z-bus matrix. The generator and transformer impedances are taken into
account while forming the Y-bus matrix. Note that all loads should be neglected
Y-bus is a sparse matrix, Z-bus is a full matrix, i.e. zero elements of Ybus become
non–zero values in the corresponding Z-bus elements. The bus impedance matrix is most
Line Specification
Half-line charging
Series impedance
Line no. Start bus End bus admittance
(P.U.) Rating
(P.U.)
MW
1 1 2 0.001 + j 0.015 0.001 60
2 2 3 0.002 + j 0.021 0.005 40
3 3 1 0.004 + j 0.046 0.0015 65
Bus MVAR
3 50
nbus = max(max(fb),max(tb));
nbranch = length(fb);
Y = zeros(nbus,nbus);
for k=1:nbranch
Y(fb(k),tb(k)) = Y(fb(k),tb(k))-y(k);
Y(tb(k),fb(k)) = Y(fb(k),tb(k));
end
for m =1:nbus
for n =1:nbranch
if fb(n) == m
Y(m,m) = Y(m,m) + y(n)+ b(n);
elseif tb(n) == m
Y(m,m) = Y(m,m) + y(n) + b(n);
end
end
end
Y
zbus = inv(Y)
Thus for a given system bus impedance matrix was formulated using Mi – Power
package.
EXERCISE 3
AIM
To conduct load flow analysis of a power system by Gauss – Seidal method using Mi
THEORY
This study helps in designing the power system network such that there are no
For each load condition, this analysis may be conducted so that the system
performance will be good under all possible load conditions. The load flow analysis program
computes the voltage magnitude, phase angles and transmission line power flow for a
The main objective of the study is to obtain the magnitude and phase angle of the
voltage at each bus & Real and Reactive power in each line.
The load flow solution also gives the initial condition of the system when the transient
behaviour of the system is to be studied. This study is essential to decide the best operation of
the operating system and for planning the future expansion of the system. It is also essential
for designing a new power system. This study is used for both Off-line and On-line analysis.
Off-line Analysis : Giving the data to computer as obtained from the data book.
On-line Analysis : Giving data to computer as obtained from the system (current data)
Selecting one of the buses as the reference bus, we get (n-1) simultaneous equations.
Pi –jQi
Ii = (i = 1,2,3 ..... n) (2)
Vi *
n
Pi = Re Σ Vi* YikVk (3)
k=1
n
Qi = -Im Σ Vi* YikVk (4)
k=1
ALGORITHM:
Step 7a: If ‘i’ refers to the slack bus go to step 9. Otherwise go to step 7(b).
ୡୟ୪
୧ ൌ െ ൣσ୨ୀଵ ୧ כ୧୨ ୨ ൧
ଵ ିொ ିଵ
ܸ௪ ൌ െ σୀଵ ܻ ܸ௪ െ σୀାଵ ܻ ܸௗ ൨
כ
Vold = Vnew
START
Bus no i = 2
B i=i+1
No
Does i refer
to P-V Bus ?
Yes
Calculate Q at bus i
QGi = QBus i + QLi
1 Pi-jQi i-1 n
Vinew = * – Σ Yij Vjnew – Σ Yij Vjold
Yii Viold j=1 j = i+1
No
Is this the
B last bus ?
Yes
At generator buses where Q limits are not violated, adjust the magnitude of
the bus voltage to the specified value using the formula
V inew = ( V inew * Vispec) / | V inew |
Yes No
~d Tol ?
~(Vinew - Viold)~
i = 1 to nb; i z slack bus
Iter = Iter +1
Print the
Results
C
STOP
Bus Specifications:
Bus Generation (P.U) Load (P.U)
Bus no V spec Q-min Q-max
type P Q P Q
1 Slack 1.06 - - - - - -
2 P-V 1.02 0.6 0.25 0.0 0.0 0.25 0.75
3 P-Q 1.0 - - 0.75 0.35 - -
Line Data
Half-line
Line. Capacity
Start bus End bus Series impedance charging
No [MW]
admittance
1 1 2 0.002 + j0.02 0.0001 70
2 2 3 0.003 + j0.032 0.0002 64
3 1 3 0.0015 + j0.0035 0.00015 55
Load flow study of the given power system using Mi - Power software package is
carried out by applying Gauss – Seidal method. The results are presented
EXERCISE 4
AIM
To conduct load flow analysis of a power system by Newton _ Raphson method using
THEORY:
This study helps in designing the power system network such that there are no
For each load condition, this analysis may be conducted so that the system
performance will be good under all possible load conditions. The load flow analysis program
computes the voltage magnitude, phase angles and transmission line power flow for a
The main objective of the study is to obtain the magnitude and phase angle of the
voltage at each bus & Real and Reactive power in each line.
The load flow solution also gives the initial condition of the system when the transient
behaviour of the system is to be studied. This study is essential to decide the best operation of
the operating system and for planning the future expansion of the system. It is also essential
for designing a new power system. This study is used for both Off-line and On-line analysis.
Off-line Analysis : Giving the data to computer as obtained from the data book.
On-line Analysis : Giving data to computer as obtained from the system (current data)
The N-R technique converges equally fast for small as well as large system, usually
less than 4 or 5 iterations but more functional evaluational are required. It is become very
The most widely used methods for solving simultaneous non linear algebraic equation
is the N-R method. This method is a successive approximation procedure based on initial
estimate of the unknown and the use of Taylor series expansion. In this method the Real and
P i = σே
ୀଵȁܸ ȁ หܻ หหܸ ห cos (ߠ + ߜ - ߜ ) (1)
Qi = - σே
ୀଵ ȁܸ ȁ หܻ หหܸ ห sin (ߠ + ߜ - ߜ ) (2)
ALGORITHM:
ߜ = 0.0, for i = 1,…..N for all buses except slack bus.
డ డ
డఋ డȁȁ
ܬൌ డொ డொ
డఋ డȁȁ
οߜ οܲ
ቂ ቃ ൌ ሾܬሿିଵ ൨
οܸ οܳ
ܸ ௪ ൌ ܸ ௗ οܸ
ߜ ௪ ൌ ߜ ௗ οߜ
START
Iter = 0
superior to the Gauss – seidal method and is less prone to divergence with ill
conditioned systems
5. This method is insensitive to factors like slack bus selection, regulating transformers
etc.,
DISADVANTAGES
2. More computations are involved and hence computing time per iteration is large
G1 G2
Bus Specifications:
Line Data
Half-line
Line. Capacity
Start bus End bus Series impedance charging
No [MW]
admittance
1 1 2 0.002 + j0.02 0.0001 70
2 2 3 0.003 + j0.032 0.0001 64
3 1 3 0.0015 + j0.0035 0.00015 55
Load flow study of the given power system using Mi - Power software package is
carried out by applying Newton - Raphson method. The results are presented.
EXERCISE : 5
AIM:
To find out the fault current for single line to ground fault.
THEORY:
The single line to ground fault the most common type is caused by lightning or by
conductors making contact with grounded structures. Figure shows a three phase generator
Assuming the generator is initially on no-load the conduction at the fault bus ‘k’ are
Va = ZfIa
Ib = Ic = 0 (1)
If = Ia
ୟ ͳ ͳ ͳ ୟ
ଵ
ା
ୟ ൌ ଷ
ͳ ଶ ൩ ୠ൩ (2)
ି
ୟ ͳ ଶ ୡ
ୟ ͳ ͳ ͳ ୟ
ା ൌ ଵ ଶ൩ ൩
ୟ ଷ
ͳ Ͳ (3)
ି
ୟ ͳ ଶ Ͳ
From the equation (3) we find that
ୟ ൌ ୟ Τ͵
ା
ୟ ൌ ୟ Τ͵ ൌ Τ͵
ି
ୟ ൌ ୟ Τ͵
ା ି
ୟ ൌ ୟ ൌ ୟ ൌ ୟ Τ͵ ൌ Τ͵ (4)
From the sequence network of the generator the symmetrical voltages are given by
ୟ Ͳ ୩୩ Ͳ Ͳ
ୟ
ୟା ା
ൌ ୟ ൩െ Ͳ ୩୩ Ͳ ୟା
ୟି Ͳ Ͳ Ͳ ି
୩୩ ୟ
ି
ୟ ൌ െ୩୩ ୟ ൌ െ୩୩ ୟା
ି
ୟି ൌ െ୩୩ ୟି ൌ ି
െ୩୩ ୟା
ା
ୟା ൌ ୟ െ୩୩ ା
ୟ (5)
ୟ ͳ ͳ ͳ ୟ
ୠ ൩ ൌ ͳ ଶ ൩ୟା (6)
ୡ ͳ ଶ ୟି
ା ା ି
ୟ െ ୟ ൫୩୩ ୩୩ ୩୩ ൯ ൌ Ǥ ͵ ୟା
ା ା ି ା
ୟ ൫୩୩ ୩୩ ୩୩ ൯ Ǥ ͵ ୟ ൌ ୟ
ା
ୟ ൌ ൫బ శ ష (8)
ౡౡ ାౡౡ ାౡౡ ାଷ ൯
ା
The fault current ൌ ୟ ൌ ͵ ୟ ൌ ൫బ శ ష (9)
ౡౡ ାౡౡ ାౡౡ ାଷ ൯
On sub symmetrical components of current in equation (5) and (6) the symmetrical
SEQUENCE NETWORK:
From equation (4) and (5), the +ve sequence, -ve sequence and zero sequence network
are connected in series as shown in fig. Thus for a LG fault, the thevnin impedance at the
fault impedance is obtained for each sequence network and are connected in series.
ା ି
Mostly ܼ ൌ ܼ
If the generator is solidly grounded, then for solid short circuit fault
Zf = 0.
If the neutral of the generator is ungrounded the zero sequence network is open
circuited.
And If = 0
Fault analysis of the given power system using Mi - Power software package is
AIM
To calculate the inductance and capacitance of a given single circuit configuration of
THEORY
equivalent triangle of side d, then d1 = d2 = d3 =d. Under such condition the flux linkage with
conductor A become
ఓ ଵ ௗ
߮ ൌ ଶగబ ቂቀସ െ ݈ ݁݃ ቁ െ ݈ ݁݃ െ ݈ ݁݃ௗ ቃ
ఓబ ଵ ௗ
ൌ
ଶగ
ቂቀସ െ ݈ ݁݃ ቁ െሺ ሻ݈ ݁݃ቃ
ఓ ଵ ௗ
ൌ ଶగబ ቂቀସ െ ݈ ݁݃ ቁ ݈ ݁݃ቃ
ఓబ ୍ ಲ ଵ
ൌ ቂቀ െ ݈ ݁݃ ቁ ݈ ݁݃ௗ ቃ
ଶగ ସ
ఓబ ୍ ಲ ଵ
ൌ ቂ ݈ ݁݃ௗ െ ݈ ݁݃ ቃ
ଶగ ସ
ఓబ ୍ಲ ଵ
߮ ൌ ቂ ݈ ݁݃ௗΤ ቃ weber – turns/m
ଶగ ସ
Inductance of conductor A
ఝಲ
ܮ ൌ H/m
୍ಲ
ఓబ ଵ
ൌ ቂ ݈ ݁݃ௗΤ ቃ
ଶగ ସ
ସగ௫ଵషళ ଵ
ൌ ቂ ݈ ݁݃ௗΤ ቃ
ଶగ ସ
ܮ ൌ ͳͲି ൣͲǤͷ ʹ݈ ݁݃ௗΤ ൧ H/m
ଵ
ൌ ଶగఌ ൫ܳ ݈ ݁݃ଵΤ ܳ ݈ ݁݃ଵΤௗ ܳ ݈ ݁݃ଵΤௗ ൯
బ
ଵ
ൌ ቀ൫ܳ ݈ ݁݃ଵΤ ሺܳ ܳ ൯݈ ݁݃ଵΤௗ ቁ
ଶగఌబ
QB + QC = - QA
ଵ
ൌ ଶగఌ ൫ܳ ݈ ݁݃ଵΤ െ ܳ ݈ ݁݃ଵΤௗ ൯
బ
ொಲ
ൌ ൫݈ ݁݃ଵΤ െ ݈ ݁݃ଵΤௗ ൯
ଶగఌబ
ொ
ܸ ൌ ଶగఌಲ ൫݈ ݁݃ௗΤ ൯
బ
ଶగఌ
ܥ ൌ బΤೝ F/m
DATA:
(i) Symmetrical Spacing
1. Diameter of the conductor = 0.125 m
2. GMR = 0.00386 cm
software package
AIM:
To determine the voltage and current of receiving end of a given transmission line
THEORY:
The line models are classified by their length. These classifications are
• Short line approximation for lines that are less than 80 km long.
• Medium line approximation for lines whose lengths are between 80 km to 250 km.
• Long line model for lines that are longer than 250 km.
These models will be discussed in this chapter. However before that let us introduce
the ABCD parameters that are used for relating the sending end voltage and current to the
Consider the power system shown in Fig. 2.1. In this the sending and receiving end
ሬሬሬԦௌ ൯ and ൫ܸ
voltages are denoted by൫ܸ ሬሬሬሬԦ ሬሬԦ ሬሬሬԦ
ோ ൯ respectively. Also the currents ൫ܫௌ ൯ and ൫ܫோ ൯ are
ሬሬሬԦ ሬሬሬሬԦ
ܸௌ ൌ ܸ ܣ ሬሬሬԦ
ோ + ܫ ܤோ (1)
ሬሬԦ
ܫௌ ൌ ܥሬሬሬሬԦ
ܸோ + ܫ ܦሬሬሬԦ
ோ (2)
This implies that A is the ratio of sending end voltage to the open circuit receiving
i.e., B, given in Ohm, is the ratio of sending end voltage and short circuit receiving
ூೄ
ܦൌ ܽݐሺܸோ ൌ Ͳሻ (6)
ூೃ
Nominal-π Representation
In this representation the lumped series impedance is placed in the middle while the
shunt admittance is divided into two equal parts and placed at the two ends. The nominal-π
representation is shown in Fig. 1. This representation is used for load flow studies, as we
shall see later. Also a long transmission line can be modeled as an equivalent π-network for
Let us define three currents I1, I2 and I3 as indicated in Fig. Applying KCL at nodes M
and N we get
IS = I1 + I2 = I1+ I3 +IR
= ܸௌ + ܸௌ + IR (7)
ଶ ଶ
Again
VS = Z I2 + VR
= Zቀܸோ ଶቁ+ VR
=ቀ ͳቁ VR + ZIR (8)
ଶ
IS = ቂቀ ͳቁܸோା ܫோ ቃ + ܸோ +ܫோ
ଶ ଶ ଶ
= Y ቀ ସ ͳቁ ܸோ + Yቀ ଶ ͳቁ ܫோ (9)
Therefore from (8) and (9) we get the following ABCD parameters of the nominal-π
representation
A = D = ቀ ଶ ͳቁ
B = Z ohm
C = ቀ ସ ͳቁmho
The constants A and D are dimensionless where as the dimensions of B and C are ohm and
mho respectively.
A=D
AD – BC = 1
DATA:
Transmission line length = 100 Km
EXERCISE: 8
AIM:
To develop a single area load frequency control through Mi-power software package.
THEORY:
The real power in a power system is being controlled by controlling the driving
torques of the individual turbines of the system. The speed governor is the main primary tool
for the load frequency control.
As the load increases speed of the turbine decreases, and the speed changer gives raise
command, so the fly balls move outwards and the point B moves downwards and the reverse
happens with the increased speed.
Speed Changer
It makes it possible to restore the frequency to the initial (nominal) value after the
operation of the speed governor which has steady state.
Hydraulic Amplifier
It consists of pilot valve and main piston with this arrangement, a low power pilot
valve movement is converted into high level movement of the oil, servomotor piston. The
input to the amplifier is the position XD of the pilot valve. The output is the position XE of the
main piston. Hydraulic amplification is necessary so that steam valve or gate could be
operated against high pressure steam.
Working
As load increases the speed of the turbine decreases, the speed changer gives raise
command and the fly ball move outwards and point B moves downwards and D moves
upwards and high pressure oil enters in to the upper pilot valve and presses the main piston
downwards and opens the valve or gate i.e increases the flow of steam to the turbine.
ȟXA = KCȟPC
Let us assume positive direction for downward movement and negative direction for
upward movement.
Movement of C:
ିమ
(i) ȟXA contributes ቀ ቁ ȟXA = - K1ȟXA = -K1KCȟPC
భ
(ii) Increase in frequency ȟf cause the fly balls to move outwards so that b moves
downwards by a proportional amount K2ȟf.
Movement of D:
It is contributed by ȟXC and ȟXT. The movement of ȟXD is the amount by which the
pilot valve open, thereby moving the main piston and opening the steam valve by ȟXE.
భ య
ȟXD = ቀ ቁ ȟXC + ቀ ቁ ȟXE
య ାర య ାర
Movement ofઢXE :
The volume of oil admitted to the cylinder is thus proportional to the line integral of
ȟXD.
௧
ȟXE = K5 ሺെοܺ ሻ ݀ݐ (3)
ିఱ
ȟXE(S)= ȟXD(S) (6)
ௌ
ିఱ
ȟXE(S) = ௌ
(K3ȟXC (S)+ K4ȟXE (S))
ర ఱ ିఱ య
ȟXE(S)ቀͳ ௌ
ቁ = ௌ
ȟXC(S) (7)
ర ఱ ିఱ య
ȟXE(S)ቀͳ ቁ = (-K1KCȟPC(S)+ K2ȟF(S))
ௌ ௌ
಼మ
ఱ య భ ൬ ሺୗሻି ሺୗሻ൰
಼భ ಼
ȟXE(S)= ൭ ೄ
൱
ర ఱ ൬ଵା ൰
಼ర ಼ఱ
಼మ
య భ ሺୗሻି ሺୗሻ
಼భ ಼
ȟXE(S)= ర
ቆ ೄ ቇ
ଵା
಼ర ಼ఱ
ಸ ଵ
ȟXE(S)= ቂȟܲ ሺሻ െ ோ ȟ ሺሻǤ ଵାௌ் ቃ (8)
ಸ
Where,
భ
R1 = – speed regulation of the governor in Hz/MW
మ
య భ
KG = ర
– gain of the governor
ଵ
TG = – time constant of speed governor
ర ఱ
The output of a generating unit at a given system frequency can be varied only by
changing it’s “ Load reference or control point” which is integrated with the speed governing
mechanism.
ȟPT = ȟPG
Kt = Gain constant
ௗ
1. By increasing the kinetic energy stored in the rotor at the rate ௗ௧ (WKE)
= H.Pr KW seconds
ఠబమ
= ଶ
= ݂ ןଶ (9)
బ ାο ଶ ο ଶ
WKE = ቀ ቁ = ቀͳ ቁ
బ బ
ଶο ο మ
= ቀͳ బమ
ቁ
బ
ଶο
= ቀͳ ቁ neglect second order term.
బ
Substituting ,
ଶο
WKE = H.Prቀͳ ቁ (11)
బ
ௗௐ಼ಶ ଶுೝ ௗ
ௗ௧
= బ ௗ௧
ο݂ (12)
2. As the frequency changes, the motor load changes being sensitive to speed
డವ
Rate of change of load with respect to frequency =B
డ
Where,
ଶுೝ ௗ
ȟPG - ȟPD = ሺο݂ሻ ȟ
బ ௗ௧
Dividing by Pr,
ଶு ௗ
ȟீǤೠ െ ȟǤೠ = ሺο݂ሻ Ǥ௨ ȟ
బ ௗ௧
ು
ȟF(S) = ȟPG(S) - ȟPD(S) ൬ଵାௌ் ൰
Where,
ଵ
KP = = Power system gain
ଶு
TP = బ
= Power system time constant
Combining the governor model, turbine model and generator model, we get the
complete block diagram representation of LFC of an isolated power which is shown in fig.
DATA:
Nominal frequency = 60 Hz
DPF = 1.0
DT = 0.01
Tmax = 20.0
Thus for given single area system, load frequency control dynamics analysis was
carried out using Mi-Power software package and LFC pattern were presented.
EXERCISE 8
AIM:
To develop a two area load frequency control through Mi-power software package.
THEORY
An extended power system can be divided into a number of load frequency control
areas interconnected by means of tie lines. Without loss of generating, we shall consider a
two area case connected by a single tie line as illustrated in fig.
The control objective now is to regulate the frequency of each area and to regulate the
tie line power as per inter area power contracts. As in the case of frequency proportional plus
integral controller will be installed so as to give zero steady state error in the tie line flow as
compare to the contracted power.
It is assumed that each control area can be represented by equivalent turbine generator
and governor system. Symbols used with suffix ‘1’ refers to area ‘1’.
In an isolated control area case, the incremental power (ȟPG - ȟPD) was accounted for
the rate of increase in area load, caused by increase in frequency. Since, a tie line transports
power in or out of an area, this fact must be accounted for in the incremental power balance
equation of each area.
ȁభ ȁȁమ ȁ
Ptie,1 = ሺߜଵ െ ߜଶ ሻ = Pmaxሺߜଵ െ ߜଶ ሻ
భమ
Where,
For incremental changes in ߜଵ and ߜଶ the incremental tie line can be expressed as,
Where
ȁభ ȁȁమ ȁ
T12 = ሺߜଵ െ ߜଶ ሻ
భమ ೝభ
T12 is defined as the differential power increase obtained per differential power angle
increase obtained per differential power angle increase.
߱ = 2ߨf
ఠ
f =
ଶగ
ଵ ௗఋ
=
ଶగ ௗ௧
ଵ ௗ
(i.e) οf = ሺοߜሻ
ଶగ ௗ௧
οߜ = ʹߨ οǤ
Where οଵ and οଶ are incremental frequency changer of areas ‘1’ and ‘2’
respectively.
ȁ ȁȁ ȁ ೝ
T12 = మ భ ሺߜଶ െ ߜଵ ሻǤ భ
భమ ೝమ ೝభ
ೝభ
P21 =൬ ൰ ܶଵଶ ൌ ܽଵଶ ܶଵଶ
ೝమ
Where,
ೝ
ܽଵଶ = ൬ భ ൰
ೝమ
The incremental power balance equation for area ‘1’ can be written as,
ଶு ௗ
οܲீభ െ οܲభ = ሺο݂ଵ ሻ ܤଵ ο݂ଵ οܲ௧ǡଵ
బ ௗ௧
ʹܪଵ ܵ
οܲீభ ሺܵሻ െ οܲభ ሺܵሻ െ οܲ௧ǡଵ ሺܵሻ ൌ ο݂ଵ ሺܵሻ ܤଵ ൨
݂
ଵΤభ
= ൣοܲீభ ሺܵሻ െ οܲభ ሺܵሻ െ οܲ௧ǡଵ ሺܵሻ൧ మಹభ ೄ
ଵା
బ ಳ భ
ು భ ௌ
ο݂ଵ ሺܵሻ = ൣοܲீభ ሺܵሻ െ οܲభ ሺܵሻ െ οܲ௧ǡଵ ሺܵሻ൧ ଵାௌ் ௌ ು భ
Where,
ଵ
KPS1 = = Power system gain for area ‘1’
భ
ଶுభ
ܶ ܵଵ = = Power system time constant for area ‘1’
బ భ
ଶగభమ
οܲ௧ǡଵ (S) = ሾοଵ ሺܵሻ െ οଶ ሺܵሻሿ
ௌ
ଶగమభ
οܲ௧ǡଶ (S) = ሾοଶ ሺܵሻ െ οଵ ሺܵሻሿ
ௌ
ିଶగభమ మభ
οܲ௧ǡଶ (S) = ሾοଵ ሺܵሻ െ οଶ ሺܵሻሿ
ௌ
Number of areas =2
Nominal frequency = 60 Hz
DPF = 1.0
DT = 0.01
Tmax = 20.0
Thus for given two area system, load frequency control dynamic analysis was carried
out using Mi-Power software package and LFC pattern were presented.
AIM
Analyze the transienet stability analysis of a single machine infinite bus system through Mi-
THEORY:
For the purpose of analysis fig (a) is reduced to fig (b) using thevnin’s equivalent of
the transmission network external to the machine and the adjacent transmission.
Because of the relative size of the system to which the machine is supplying power
dynamics associated with the machine will cause virtually no change in the voltage and
For any given system condition, the magnitude of infinite bus voltage EB remains
constant. However as the steady state condition change, the magnitude of EB may change
We will analyze the small signal stability of the system with the synchronous machine
represented by models of varying degree of detail. We will begin with the classical model and
In each case we will develop the expressions for the elements of state matrix as
explicit function of the system parameters. This will help make clear the effects of various
factor associated with a synchronous machine on system stability. In addition to the state
space representation and model analysis we will use the block diagram representation and
CALCULATION:
ᇲ סିாಳ ିסஔ
It =
ᇲ סିாಳ ሺୡ୭ୱஔି୨ୱ୧୬ஔሻ
=
S’ = P + jQ’ = E’It*
In p.u the air gap torque is equal to the air gap power
Here,
డ் ᇲ ாಳ
ȟୣ = డఋ
ȟɁ =
Ɂ ሺȟɁሻ
PɁ = ߱ ȟ߱
Also
ଵ
Pȟ߱ = (ȟ Tm – KSȟɁ – KD.ȟ߱ )
ଶగ
ᇲ ாಳ
KS = Ɂ
PȟɁ = ߱ ȟ߱
െܭ െܭௌ ͳ
݀ ȟ߱ ȟ߱
൨ ൌ ʹܪ ʹ ܪ൩ቂ ቃ ʹ ܪ൩ ȟܶ
݀ ݐȟɁ ߱ Ͳ ȟɁ
Ͳ
Where
ȟ = Laplace operator
ఠబ ଵ
ȟɁ = ቂ ሺെܭௌ ȟɁ െ ܭ ȟ߱ ȟ୫ ሻቃ
ௌ ଶுௌ
ఠబ ଵ ஔ
= ቂ ቀെܭௌ ȟɁ െ ܭ ȟ୫ ቁቃ
ௌ ଶுௌ ఠబ
Rearranging we get,
ܭ ܭௌ ߱
ܵ ଶ ሺȟɁሻ ܵሺȟɁሻ ߱ ሺȟɁሻ ൌ ȟ
ʹܪ ʹܪ ʹ ܪ୫
ܭ ܭௌ
ܵଶ ܵ ߱ ൌ Ͳ
ʹܪ ʹ ܪ
ܵ ଶ ʹܵ߱ ߱ଶ ൌ Ͳ
߱ ൌ ට ೄ ߱ rad/sec
ଶு
DETAILED DIAGRAM:
DATA:
Generator:
H = 3.5 Mw-s/MVA
Voltage = 24 KV, 60 Hz
Transformer:
Line:
Et = 1.0 p.u;
PF = 0.9
RESULT:
Thus for a given single bus infinite system, transient stability analysis was carried
AIM:
To solve economic dispatch and unit commitment problem of a given power system
using Mi – Power package.
THEORY:
ECONOMIC DISPATCH PROBLEM:
The purpose of economic dispatch (or) optimal dispatch is to reduce fuel costs for the
power system. By economic load scheduling, we mean to find the generation of the different
generators (or) plants, so that the total fuel cost is minimum and at the same time the total
demand and losses at any instant must be met by total generation. The economic dispatch
problem involves the solution of two different problems.
Equality Constraint: σே
ୀଵ ܲீ െ ܲ = 0
The necessary condition, for the existence of a minimum cost operating condition is
that the incremental cost rates of all the units will be equal to some undetermined value
݀ܨ
ൌ ߣ
݀ܲீ
The necessary conditions may be expanded slightly as shown in the set of equation.
ௗி
ௗಸ
ൌ ߣ : for ܲீǡ ܲீ ܲீǡೌೣ
ௗி
ߣ : ܲீ ൌ ܲீǡ
ௗಸ
Where
ௗி
οܨ = ௗ .݀ܲீ
ಸ
1. If οܨ௧ < 0, the fuel input to the system is decreased by increasing generation on
source 1 and consequently, the intial generation schedule was not optimum.
2. If οܨ௧ > 0, the fuel input to the system is increased by increasing the generation of
source 1 and in this case it would not be desirable to increase the output of source 1.
್
ವశ σಿ
సభ మೌ
ߣ= భ
σಿ
సభ మೌ
ܲீ = ߙ + ߚ ߣ + ߛ ߣ2 (or)
ఒି
ߛீ = ଶ
Step: 3Compute σே
ୀଵ ܲீ
Step: 5If σே
ୀଵ ܲீ ൏ ܲ
If σே
ୀଵ ܲீ ܲ
Assign ߣ = ߣ െ οߣ
ሺο
Where οߣ = భ (οܲ െ )݄݀݊ܽ݉݁݀݊݅݁݃݊ܽܥ
σಿ
సభ మೌ
DATA
Thus solution for economic dispatch and unit commitment problem for a given power
system was solved using Mi – Power package and the results were presented.
EXERCISE 12
AIM
To obtain the bests possible estimate of state of the power system for the given set of
THEORY
State estimation plays a very important role in the monitoring and control of modern power
system. The main aim of this is to obtain the voltages and bus angles by processing the available
system data. State estimation is defined as the data processing algorithm for converting
redundant meter reading and other available information into as estimate of the state of
electrical power system. Real time measurement is collected in power system through SCADA
system. Typical data includes real and reactive line flows and real and reactive bus injections
and bus voltage magnitude. This telemetered data may contain errors.
These errors render the output useless. It is for this reason that, power system state
estimation techniques have been developed. A commonly used criterion is that of minimizing
the sum of the squares of the differences between estimated measurement quantities and actual
The mathematical model of state estimation is based on the relation between the
Line Data
Reactance in
Line Number Start Bus End Bus
p.u.
1 1 2 0.2
2 2 3 0.4
3 1 3 0.25
Measurement Data
Measurement
S. No. Values (p.u) Weightages
Quantities
1 P1 0.72 1.0
2 P1, 2 0.68 1.0
3 P3, 2 -0.405 0.1
4 P1, 3 -0.04 0.2
RESULT
The state of the given system has estimated using weighted least square method and
EXERCISE 13
AIM
To study the performance analysis of over current relay.
THEORY
The over current relays are used to sense the fault currents and over-load currents and
trips off the system. Micro controller is used for the control operation. The programming is
done in such a way that when the fault current value is above the set value the relay is closed/
opened (depends on connection) and it trips the circuit. The tripping of the relay is indicated
by the LED. The LCD displays the set time, set current, fault current and tripping time. Relays
are of many types. Some Depend on the operation of an armature by some form of
When a relay operates it closes contacts in the trip circuit which is normally connected across
110 V D.C. supply from a battery. The passage of current in the coil of the trip circuit actuates
the plunger, which causes operation of the circuit breaker, disconnecting the faulty system. In
the laboratory, a 3-phase contactor simulates the operation of the circuit breaker. The closure
of the relay contacts short-circuits the 'no volt ' coil of the contactor, which, in turn, disconnects
The protective relaying which responds to a rise in current flowing through the protected
element over a pre-determined value is called 'overcurrent protection' and the relays used for
this purpose are known as over current relays. The operating time of all overcurrent relays tends
to become asymptotic to a definite minimum value with increase in the value of current.
DATA
Table 1 : Transmission Line Data on 100 MVA base
Line Charging
Bus Code Line Impedance
Admittance
1-2 j0.1 0
2-3 j0.1 0
3-4 j0.1 0
4-5 j0.1 0
5-6 j0.1 0
Generator Details :
G1 = 100 MVA, 11 kV
Maximum fault level = 1000 MVA
Relay Manufacturer : ABB REB 670, IEC Normal Inverse characteristics
Relay Details :
Relay Name R1 R2 R3 R4
RESULT
Thus, the performance analysis of over current relay is studied.
EXERCISE 14
AIM
To study the performance analysis of impedance relay.
THEORY
A mho impedance relay generally has an operating characteristic which is a circle
passing through the origin. Actually, all modern mho impedance relays for phase, ground and
Only the case in which the mho characteristic does pass through the origin is when the
source impedance (Zs) is zero. However, this case would never happen since all real-world
The simple explanation is that the relay sees the source impedance from the drop in
the voltage from prefault conditions during the fault. It has been shown that traditional fixed
voltage or fixed current testing methods actually present a power system to the relay has the
The angle of the zero-sequence line impedance is equal to the angle of the positive
sequence line impedance.
The angle of the fault is equal to the line impedance angle and to the source
impedance angle.
The real impedance operates times actually vary with source to line impedance ratio (SIR).
Generally, the operation times are higher with higher source to line impedance ratio values.
characteristic graph. The fault directly behind the relay can only be plotted on the reverse fault
characteristic graph. The fault directly in front of the relay cannot be plotted on the reverse
The unfaulted phase voltages change. This is due to the mutual coupling between
phases.
The angle of the faulted phase voltage (Va) shifts. The value of Va depends on the line
and source positive as well as zero sequence impedances.
The angle between the fault voltage and current is not necessarily equal to the
impedance test angle.
In order to determine the appropriate voltages and currents to simulate a given fault condition,
it is necessary to also decide on the power system being simulated. That is:
Position (% of line)
Without consciously deciding on power system, some arbitrary assumption must be made about
either the voltage or the current or both and we end up with an unknown power system.
Example:
Fault condition + — Determine -> Voltages & Currents+ unknown power system
Of course, what an impedance relay does is use some knowledge (read assumption) of the
power system which is the line impedances, and the voltages and currents to determine the fault
condition. That is:
Note that the voltages and currents include both the prefault and unfaulted phase voltages and
currents.
In actuality:
Any point on the R-X plane corresponds to an infinite number of possible fault
conditions even for the same power system.
Impedance relays use not only the faulted phase voltages and currents, but also the
prefault and unfaulted phase voltages and currents to determine operation.
All must be calculated properly with the same power system model that the relay is set
for to simulate the desired fault condition.
RESULT
Thus, the performance analysis of over current relay is studied.
EXERCISE 15
AIM
To study the performance of CT,PT and Insulator String.
THEORY
Current transformers reduce high voltage currents to a much lower value and provide a
convenient way of safely monitoring the actual electrical current flowing in an AC transmission
line using a standard ammeter. The principal of operation of a basic current transformer is
slightly different from that of an ordinary voltage transformer. Current transformers can reduce
or “step- down” current levels from thousands of amperes down to a standard output of a known
ratio to either 5 Amps or 1 Amp for normal operation. Thus, small and accurate instruments
and control devices can be used with CT’s because they are insulated away from any high-
voltage power lines. There are a variety of metering applications and uses for current
transformers such as with Wattmeter’s, power factor meters, watt-hour meters, protective
Potential transformer or voltage transformer gets used in electrical power system for
stepping down the system voltage to a safe value which can be fed to low ratings meters and
relays. Commercially available relays and meters used for protection and metering, are
designed for low voltage. This is a simplest form of potential transformer definition. Potential
this transformer is connected across the phase and ground. Just like the transformer used for
stepping down purpose, potential transformer i.e. PT has lower turns winding at its secondary.
The system voltage is applied across the terminals of primary winding of that transformer, and
then proportionate secondary voltage appears across the secondary terminals of the PT.
voltage transformer, when rated burden gets connected across the secondary; the ratio of
primary and secondary voltages of transformer is equal to the turns ratio and furthermore, the
two terminal voltages are in precise phase opposite to each other. But in actual transformer,
there must be an error in the voltage ratio as well as in the phase angle between primary and
secondary voltages.
through metallic links. Fig. 1 (i) shows string of suspension insulators. The porcelain portion
of each disc is in between two metal links as shown in Fig. 1 (ii). Therefore, each disc forms
capacitance.
However, in actual practice, capacitance also exists between metal fitting of each disc
and tower or earth. This is known as shunt capacitance C1. Due to shunt capacitance, charging
current is not the same throu1gh all the discs of the string Fig. 1 (i) shows string of suspension
insulators. The porcelain portion of each disc is in between two metal links as shown in Fig. 1
(ii). Therefore, each disc forms a capacitor C as shown in Fig. 1 (iii). This is known as mutual
capacitance or self capacitance. However, in actual practice, capacitance also exists between
metal fitting of each disc and tower or earth. This is known as shunt capacitance C1. Due to
shunt capacitance, charging current is not the same through all the discs of the string [See Fig.
1 (iii)]. Therefore, voltage across each disc will be different. Obviously, the disc nearest to the
line conductor will have the maximum voltage. Thus referring to Fig. 1 (iii), V1 will be much
The following points may be noted regarding the potential distribution over string of
suspension insulators:
i. The voltage impressed on a string of suspension insulators does not distribute itself
uniformly across the individual discs due to the presence of shunt capacitance.
ii. The disc nearest to the conductor has maximum voltage across it. As we move towards
the Cross-arm, the voltage across each disc goes on decreasing.
iii. The unit nearest to the conductor is under maximum electrical stress and is likely to
be punctured. Therefore, means must be provided to equalize the potential across each
unit.
iv. If the voltage impressed across the string were d.c, then voltage across each unit would
be the same. It is because insulator capacitances are ineffective for d.c.
String Efficiency:
The ratio of voltage across the whole string to the product of number of discs and the
voltage across the disc nearest to the conductor is known as string efficiency.
ܸ݃݊݅ݎݐݏ݄݁ݐݏݏݎܿܽ݁݃ܽݐ݈
ܵ ݕ݂݂݁ܿ݊݁݅ܿ݅ܧ݃݊݅ݎݐൌ
݊ݎݐܿݑ݄݀݊ܿ݁ݐݐݐݏ݁ݎܽ݁݊ݏݏݎܿܽ݁݃ܽݐ݈ݒݔ
along the string. The greater the string efficiency, the more uniform is the voltage distribution.
Thus 100% string efficiency is an ideal case for which the voltage across each disc will be
exactly the same. Although it is impossible to achieve 100% string efficiency, yet efforts should
The potential across each unit in a string can be equalized by using a guard ring which
is a metal ring electrically connected to the conductor and surrounding the bottom insulator.
The guard ring introduces capacitance between metal fittings and the line conductor. The guard
rings contoured in such a way that shunt capacitance currents i1, i2 etc. are equal to metal
fitting line capacitance currents i′1, i′2 etc. The result is that same charging current I flows
through each unit of string. Consequently, there will be uniform potential distribution across
the units.
CIRCUIT DIAGRAM:
PROCEDURE:
Without Guard Ring:
i. Connect the circuit as per the Fig. 3. From one of the Variac output terminals connect
to terminals S1 and other Variac output terminal to G as shown in Fig. 3.
ii. Apply voltage from the Variac across the string in steps of 20V starting from 30V to
110V.
iii. Measure the voltage across S1 and S2(which is to be noted as E1); S2 and S3(which is
to be noted as E2); S3 and S4(which is to be noted as E3); S4 to G (which is to be
noted as E4)
iv. Tabulate the voltages E1 to E4 in the tabular column 1.
v. Calculate the string efficiency without guard ring.
CALCULATIONS:
ܸ݃݊݅ݎݐݏ݄݁ݐݏݏݎܿܽ݁݃ܽݐ݈
ܵ ݕ݂݂݁ܿ݊݁݅ܿ݅ܧ݃݊݅ݎݐൌ
݊ݎݐܿݑ݄݀݊ܿ݁ݐݐݐݏ݁ݎܽ݁݊ݏݏݎܿܽ݁݃ܽݐ݈ݒݔ
TABULAR COLUMN:
Without Guard Ring:
E E1 E2 E3 E4 String Efficiency
RESULT:
Thus, testing of CT, PT and Insulator string is studied.
EXERCISE 16
AIM
To study the performance of relay coordination in radial feeder protection.
THEORY
Whole of the power system can be subdivided in to number of radial feeders fed from
one end. Generally such radial feeders are protected by over current and earth fault relays used
as primary relays for 11 kV and 66 kV lines. For lines of voltage rating beyond 66 kV, distance
protection is applied as a primary protection whereas over current and earth fault relays are
used as back up relays.
A simplified radial feeder network without transformers (in actual practice transformers
do exist at substations) is shown in single line diagram of fig. below.
Fig. Typical
cal Radial Trans
smission L
Transmission Line
If the fault occurs in distribution network, fuse should isolate the faulty section. Should
the fuse fail, relay R3 shall give back-up protection. Relays R1, R2, and R3 act as primary
relays for faults in section I, section I, and section III respectively.
If fault in section III is not cleared by relaying scheme at relaying point R3, relay R2
will act as a back-up. Similarly back-up protection is provided by relay R1 for faults in section
II. A,B, C and D are substations in fig.
Generally Inverse time over current relays with Definite Minimum Time feature (IDMT
relays) are used in practice. There are many types of such relays available in relay market, viz.
normal inverse relays, very inverse relays and extremely inverse relays.
The other types of o/c relays are 3 second relay and 1.3 second relay. This means the
time of operation of the relay is either 3 or 1.3 second at Plug Setting Multiplier (PSM) equal
to 10. Long time inverse relays are used for o/c cum overload application. Voltage restrains
o/c relays have their own application.
Very inverse relays are less prone to the ratio ZS/ZL. Extremely inverse relays are yet
better. Very inverse relays are faster in operation for close-in faults yet maintaining the
discrimination with fuse and other relays. Extremely inverse relays are more meritorious in this
aspect too. Instantaneous o/c relays are not immune to ZS/ZL ratio. Definite time o/c relays are
100 % immune to this ratio.
Very inverse relays can be used with an additional advantage while protecting a
machine or a transformer as they match with the heating characteristic of equipment better than
their normal inverse equivalent.
This is only a single phase version of a radial feeder. Faults in different sections can be
created by switches S1, S2 and S3. Fault limiting resistance of 18 ohms is used for practical
purposes only. Here C.T. secondary rating is 5 Amp and relay rating is 1 Amp. This is
contradicting the practice for practical purpose.
RESULT:
Thus, the relay coordination in radial feeder protection is studied