Power Systems Lab Manual11
Power Systems Lab Manual11
Prepared by:
COURSE OBJECTIVES:
List of Experiments
Note: In the above listed experiments, any ten of the experiments are required to be
conducted.
COURSE OUTCOMES:
After completion of this lab, the student will be able to
Perform various load flow techniques
AIM: To obtain the Ybus matrix for the given power system using Direct inspection method
and to verify the same using MATLAB.
Find the Ybus matrix for the given power system data using Direct inspection method
1 2 j0.15
2 3 j0.10
1 3 j0.20
1 4 j0.10
4 3 j0.15
clc;
close all;
clear all;
zdata=[1 2 0 0.15;
1 3 0 0.2;
1 4 0 0.1;
2 3 0 0.1;
3 4 0 0.15];
nl=zdata(:,1); % Sending end bus
nr=zdata(:,2); % Receiving end bus
R=zdata(:,3); % Resistance
X=zdata(:,4); % Reactance
nbr=length(zdata(:,1));
nbus = max(max(nl), max(nr));
Z = R + j*X; %branch impedance
y= ones(nbr,1)./Z; %branch admittance
Ybus=zeros(nbus,nbus); % initialize Ybus to zero
for k = 1:nbr; % formation of the off diagonal elements
ybus is the command used to obtain the admittance matrix for the given system data
using direct inspection method.
Expected Output:
Actual Output:
AIM: To obtain the Zbus matrix for the given power system using Z bus building algorithm and
to verify the same using MATLAB.
Find the bus impedance matrix using Zbus building algorithm for the given power system
whose reactance values are as follows.
0 1 j0.05
1 2 j0.75
0 2 j0.075
2 3 j0.45
1 3 j0.3
zbuild is the command used to obtain the impedance matrix for the given system data
using Zbus building algorithm.
clc
clear all
close all
linedata=[0 1 0 0.05
0 2 0 0.075
1 2 0 0.75
1 3 0 0.30
2 3 0 0.45];
nl = linedata(:,1); nr = linedata(:,2); R = linedata(:,3);
X = linedata(:,4);
nbr=length(linedata(:,1)); nbus = max(max(nl), max(nr));
ZB = R + j*X;
Zbus = zeros(nbus, nbus);
tree=0; %%%%new
% Adding a branch from a new bus to reference bus 0
for I = 1:nbr
ntree(I) = 1;
if nl(I) == 0 | nr(I) == 0
if nl(I) == 0
n = nr(I);
elseif nr(I) == 0
n = nl(I);
end
if abs(Zbus(n, n)) == 0
Zbus(n,n) = ZB(I);
tree=tree+1;%%new
end
ntree(I) = 2;
end
end
for n = 1:nbus
nadd = 1;
if abs(Zbus(n,n)) == 0
for I = 1:nbr
if nadd == 1;
if nl(I) == n | nr(I) == n
if nl(I) == n
k = nr(I);
elseif nr(I) == n
k = nl(I);
end
if abs(Zbus(k,k)) ~= 0
for m = 1:nbus
if m ~= n
Zbus(m,n) = Zbus(m,k);
Zbus(n,m) = Zbus(m,k);
end %%%%%%new
ACTUAL OUTPUT:
Result:
Aim:- To solve power flow problems by the method of Gauss-Seidel using MATLAB.
Apparatus Required:-
1 Personal Computer 1
2 Keyboard 1
3 Mouse 1
4 MATLAB Software 1
Procedure:-
1. Turn on your personal computer.
2. Click on the MATLAB icon of your personal computer.
3. Click the file button and select the new Blank M-file.
4. Type the program on the new M-file for corresponding bus system.
5. After completion of the program, save and run.
6. Note down the line flow and losses.
7. Close the MATLAB tool and turnoff your pc.
clc;
close all;
clear all;
% From TO Resistance Reactance
linedata = [ 1 2 0.10 0.20;
1 4 0.05 0.20;
1 5 0.08 0.30;
2 3 0.05 0.25;
2 4 0.05 0.10;
2 5 0.10 0.30;
2 6 0.07 0.20;
3 5 0.12 0.26;
3 6 0.02 0.10;
4 5 0.20 0.40;
5 6 0.10 0.30];
nl=linedata(:,1); % Sending end bus
nr=linedata(:,2); % Receiving end bus
R=linedata(:,3); % Resistance
X=linedata(:,4); % Reactance
nbr=length(linedata(:,1));
nbuses = max(max(nl), max(nr));
Z = R + j*X; %branch impedance
y= ones(nbr,1)./Z; %branch admittance
Ybus=zeros(nbuses,nbuses); % initialize Ybus to zero
for k = 1:nbr; % formation of the off diagonal elements
if nl(k) > 0 & nr(k) > 0
Ybus(nl(k),nr(k)) = Ybus(nl(k),nr(k)) - y(k);
Ybus(nr(k),nl(k)) = Ybus(nl(k),nr(k));
end
end
for n = 1:nbuses % formation of the diagonal elements
for k = 1:nbr
if nl(k) == n | nr(k) == n
Ybus(n,n) = Ybus(n,n) + y(k);
else
end
end
end
% |Bus|Type| Vsp |theta |PGi |QGi | PLi | QLi | Qmin | Qmax |
busdata = [ 1 1 1.05 0 0.0 0 0 0 0 0;
2 2 1.05 0 0.5 0 0 0 -0.5 1.0;
3 2 1.07 0 0.6 0 0 0 -0.5 1.5;
4 3 1.0 0 0.0 0 0.7 0.7 0 0;
5 3 1.0 0 0.0 0 0.7 0.7 0 0;
6 3 1.0 0 0.0 0 0.7 0.7 0 0 ];
bus = busdata(:,1); % Bus number
type = busdata(:,2); % Type of Bus 1-Slack, 2-PV, 3-PQ.
POWER SYSTEMS LAB Page 15
V = busdata(:,3); % Initial Bus Voltages.
th = busdata(:,4); % Initial Bus Voltage Angles.
GenMW = busdata(:,5); % PGi, Real Power injected into the buses.
GenMVAR = busdata(:,6); % QGi, Reactive Power injected into the buses.
LoadMW = busdata(:,7); % PLi, Real Power Drawn from the buses.
LoadMVAR = busdata(:,8); % QLi, Reactive Power Drawn from the buses.
Qmin = busdata(:,9); % Minimum Reactive Power Limit
Qmax = busdata(:,10); % Maximum Reactive Power Limit
nbus = max(bus); % To get no. of buses
P = GenMW - LoadMW; % Pi = PGi - PLi, Real Power at the buses.
Q = GenMVAR - LoadMVAR; % Qi = QGi - QLi, Reactive Power at the buse
Vprev = V;
toler = 1; % Tolerence.
iteration = 1; % iteration starting
while (toler > 0.00001) % Start of while loop
for i = 2:nbus
sumyv = 0;
for k = 1:nbus
if i ~= k
sumyv = sumyv + Ybus(i,k)* V(k); % Vk * Yik
end
end
if type(i) == 2 % Computing Qi for PV bus
Q(i) = -imag(conj(V(i))*(sumyv + Ybus(i,i)*V(i)));
if (Q(i) > Qmax(i)) || (Q(i) < Qmin(i)) % Checking for Qi Violation.
if Q(i) < Qmin(i) % Whether violated the lower limit.
Q(i) = Qmin(i);
else % No, violated the upper limit.
Q(i) = Qmax(i);
end
type(i) = 3; % If Violated, change PV bus to PQ bus.
end
end
V(i) = (1/Ybus(i,i))*((P(i)-j*Q(i))/conj(V(i)) - sumyv); % Compute Bus Voltages.
if type(i) == 2 % For PV Buses, Voltage Magnitude remains same, but Angle changes.
r=abs(Vprev(i));
o=angle(V(i));
V(i) = r*cos(o) + j*r*sin(o); % rect = real + j*imag
end
end
iteration = iteration + 1; % Increment iteration count.
toler = max(abs(abs(V) - abs(Vprev))); % Calculate tolerance.
Vprev = V; % Vprev is required for next iteration, V(i) = pol2rect(abs(Vprev(i)), angle(V(i)));
end % End of while loop / Iteration
iteration; % Total iterations.
V; % Bus Voltages in Complex form.
Vmag = abs(V); % Final Bus Voltages.
Ang = 180/pi*angle(V); % Final Bus Voltage Angles in Degree
disp('***************************************** ')
disp(' Gauss Seidel Load-Flow Study ')
POWER SYSTEMS LAB Page 16
disp('***************************************** ')
disp(' Bus Voltage Angle ')
disp(' no Volts Degree ')
ywz=[ bus(:,1) Vmag Ang ];
disp(ywz)
disp('***************************************** ')
Result:
Apparatus Required:-
1 Personal Computer 1
2 Keyboard 1
3 Mouse 1
4 MATLAB Software 1
Procedure:-
clc;
close all;
clear all;
% From To R X
% Bus Bus (pu) (pu)
linedata=[ 1 2 0.0192 0.0575
1 3 0.0452 0.1652
2 4 0.0570 0.1737
3 4 0.0132 0.0379
2 5 0.0472 0.1983
2 6 0.0581 0.1763
4 6 0.0119 0.0414
5 7 0.0460 0.1160
6 7 0.0267 0.0820
6 8 0.0120 0.0420
6 9 0.0 0.2080
6 10 0.0 0.5560
9 11 0.0 0.2080
9 10 0.0 0.1100
4 12 0.0 0.2560
12 13 0.0 0.1400
12 14 0.1231 0.2559
12 15 0.0662 0.1304
12 16 0.0945 0.1987
14 15 0.2210 0.1997
16 17 0.0824 0.1923
15 18 0.1073 0.2185
18 19 0.0639 0.1292
19 20 0.0340 0.0680
10 20 0.0936 0.2090
10 17 0.0324 0.0845
10 21 0.0348 0.0749
10 22 0.0727 0.1499
21 23 0.0116 0.0236
15 23 0.1000 0.2020
22 24 0.1150 0.1790
23 24 0.1320 0.2700
24 25 0.1885 0.3292
25 26 0.2544 0.3800
25 27 0.1093 0.2087
28 27 0.0 0.3960
27 29 0.2198 0.4153
27 30 0.3202 0.6027
29 30 0.2399 0.4533
8 28 0.0636 0.2000
6 28 0.0169 0.0599 ];
nl=linedata(:,1); % Sending end bus
nr=linedata(:,2); % Receiving end bus
R=linedata(:,3); % Resistance
X=linedata(:,4); % Reactance
nbr=length(linedata(:,1));
No_of_Bus = max(max(nl), max(nr));
Z = R + j*X; %branch impedance
y= ones(nbr,1)./Z; %branch admittance
Ybus=zeros(No_of_Bus,No_of_Bus); % initialize Ybus to zero
for k = 1:nbr; % formation of the off diagonal elements
if nl(k) > 0 & nr(k) > 0
disp('***************************************** ')
disp(' Newton Raphson Load-Flow Study ')
disp('***************************************** ')
disp(' Bus Voltage Angle ')
disp(' no Volts Degree ')
ywz=[ busNo(:,1) V del ];
disp(ywz)
disp('***************************************** ')
Result:
Aim:- To solve power flow problems by the method of fast decoupled using MATLAB.
Apparatus Required:-
1 Personal Computer 1
2 Keyboard 1
3 Mouse 1
4 MATLAB Software 1
Procedure:-
1. Turn on your personal computer.
2. Click on the MATLAB icon of your personal computer.
3. Click the file button and select the new Blank M-file.
4. Type the program on the new M-file for corresponding bus system.
5. After completion of the program, save and run.
6. Note down the line flow and losses.
7. Close the MATLAB tool and turnoff your pc.
PROGRAM:
clc;
close all;
clear all;
m = real(Ybus);
n = imag(Ybus);
P = zeros(nbuses,1);
Q = zeros(nbuses,1);
iter= iter+1;
P
Q
%finding del P by v
for i=1:(nbuses-1)
if(i<slack)
delP(i,1)= Pspec(i)-P(i);
else
delP(i,1)=(Pspec(i+1)-P(i+1));
end
delPbyv(i,1)=delP(i,1)/v(i,1);
end
if max(abs(delP))>tolerance | max(abs(delQ))>tolerance
flag=1; % tolerance check
else
flag=0;
end
%updating values
for i=1:(nbuses-1)
del(i+1,1)= del(i+1,1)+deldel(i,1);
end
c=0;
for i=1:nbuses
if bus(i,10)==3
c=c+1;
v(i,1)=v(i,1)+delv(c,1);
end
end
iter
v
del
end
disp('***************************************** ')
disp(' Fast decoupled Load-Flow Study ')
disp('***************************************** ')
disp(' Bus Voltage Angle ')
disp(' no Volts Degree ')
ywz=[ bus(:,1) v del ];
disp(ywz)
disp('***************************************** ')
Result:-
FAULT ANALYSIS – I
Aim: - To find the fault currents and fault voltages when a single line to ground (L-G)
fault and line to line (L-L) faults occurred on unloaded alternator.
Apparatus Required:-
Precautions:-
1. Avoid the loose connections.
2. Note down the readings without parallax error.
3. Keep the field rheostat in maximum resistance position.
4. Keep the variac of the static exciter in minimum voltage output position.
Procedure:-
(a) LG Fault:-
Procedure: - LL Fault:-
1. Connect the circuit as per the given circuit diagram.
2. Ensure that the filed rheostat is kept in minimum resistance position and DPST switch inoff
position.
3. Switch on the supply and close the DPST Switch and then by varying field rheostat, runthe
motor at rated speed.
4. By varying the static exciter apply rated current (Fault current) of an alternator.
5. Note down the fault currents and voltmeter readings.
VRN (V) VYN (V) VBN (V) IR (A) VRY (V) VYB (V) VBR (V) IF (A)
(b) LL Fault:-
VRN (V) VYN (V) VBN (V) IR (A) VRY (V) VYB (V) VBR (V) IF (A)
CALCULATION:
Result:
FAULT ANALYSIS – II
Aim: - To find the fault currents and fault voltages when a double line to ground (LLG) fault
and Triple line to ground (LLLG) faults occurred on unloaded alternator.
Apparatus Required:-
Procedure:-
(a) LLG Fault:-
Procedure:-
(b) LLLG Fault:-
Tabular Column:-
(c) LLG Fault:-
VRN (V) VYN (V) VBN (V) IR (A) VRY (V) VYB (V) VBR (V) IF (A)
VRN (V) VYN (V) VBN (V) IR (A) VRY (V) VYB (V) VBR (V) IF (A)
CALCULATION:
Result:
Aim:To study the performance of an IDMT overcurrent relay and plot the graph between
time and plug setting multiplier
Apparatus:
Front panel:
Theory:
The overcurrent relay works on the induction principle. An induction type over-current
relay giving inverse-time operation with a definite minimum time characteristic consists
essentially of an ac energy meter mechanism with slight modification to give required
characteristics. The relay has two electro-magnets. The upper electromagnet has-two windings,
one of these is primary and is connected to the secondary of a CT in the line to be protected and
is tapped at intervals.
The tapings are connected to a plug setting bridge by which the number of turns in use
can be adjusted, thereby giving the desired current setting. The plug bridge is usually arranged
Adjustment of current setting is made by inserting a pin between the spring loaded jaws
of the bridge socket at the tap value required. When the pin is withdrawn for the purpose of
changing the setting value while the relay in service, the relay automatically adopts higher
setting, thus the CT's secondary is not open-circuited.
The second winding is energized by induction from the primary, and is connected in
series with the winding on the lower magnet. By this arrangement, leakage fluxes of upper and
lower electro-magnets are sufficiently displaced in space and phase to set up a rotational torque
on the aluminium disc suspended between the two magnets, as in the shaded pole induction disc
motor. This torque is controlled by the spiral spring and also sometimes by a permanent magnet
brake on the disc. The torque is given by the expression
T = K1 I2rms - K2
Where, Irms is the current through the coil and K2 is the restraining torque of the spring.
The disc spindle carries a moving contact which bridges two fixed contacts (trip circuit
contacts) when the disc has rotated through a pre-set angle. The angle can be set to any value
between 0° and 360° and thereby giving desired time setting. This adjustment is known as
time-setting multiplier. Time multiplier setting is generally in the form of an adjustable back-
stop which decides the arc length through which the disc travels, by reducing the length of
travel, the operating time is reduced. The time setting multiplier is calibrated from 0 to 1 in
steps of 0.05. These figures do not represent the actual operating times but are multipliers to be
used to convert the time known from the relay name plate curve (time-PSM curve) into the
actual operating time.
Since the time required to rotate the disc through a pre-set angle depends upon the
torque which varies as the current in the primary circuit, therefore, more the torque lesser will
be the time required. So the relay has inverse-time characteristic.
The ratio of reset to pick-up is inherently high in induction relays because their
operation does not involve any change in the air gap. It lies between 95% and 100%.
The operating time of over current relays tends to become asymptotic to a definite
minimum value with increase in the value of actuating quantity. This is inherent in
electromagnet relays due to saturation of magnetic circuit. So by varying the point of
saturation different characteristics are obtained.
POWER SYSTEMS LAB Page 48
Relay Settings:
Introduction:
Self powere device, displays 3 - ɸ Currentduring health conditions. Also, monitors
phase failuresPhase unbalance,phase reversal,over current in a 3 - ɸ4 wire system.
Parameters
in current
R–V
Y–V
B–V
RY – V
YB – V
RB – V
R–A
Y–A
B–A
RUN Mode:
1. On power application, relay will be in NC condition for approximately 10 sec.
2. During health condition, all the voltage parameters shall be displayed with
instantaneous values. Relay and relay LED will be in ON or OFF condition depending
upon the relay ‘y’ or relay ‘n’ settings.
3. During fault condition, type of fault shall be displayed with relay OFF or ON status
depending on relay ’y’ or ‘n’ setting.
Note: C.T primary must be set at 50/5 A. If a different C.T is used then the settings must be
changed accordingly.
Wiring Diagram:
PRECAUTIONS:-
1. Disc must be stationary before applying fault current.
2.TSM setting must be changed with due care.
Procedure:
1. Connect the circuit as shown in the figure and decide the equipment rating based on the
Relay setting.
2. Set the relay setting and increase the current by autotransformer and resistance
arrangement to a particular current keeping TPST switch in ON position.
3. Now Switch OFF the TPST switch to permit the load current to flow through the relay
operating coil; record the time of operation of the Relay, till the contactor trips with the
help of a stop watch.
4. Repeat the same procedure for different values of time and ratio of current.
5. Calculate the current ratio for each reading and plot a graph between time of operation and
current.
Observations:
Current
% NCRT through Time of
Fault Current
S. no. (Normal contactor operation
Current) (amps) (sec)
1.
2.
3.
4.
Graphs:
RESULT:
The characteristics of IDMT over current relay are observed and drawn on the graph
DISCUSSION QUESTIONS:
Aim: To study the performance of electromechanical over voltage relay and microprocessor
over voltage relays and to plot the graph between time vs. plug setting multiplier
Apparatus required:
1. Over voltage relays
2. 3 - ɸ Auto Transformer
3. Connecting wires
Front Panel:
Theory:
a) Microprocessor based relays:
The advances in VLSI technology and software techniques in 1970 are led to the
development of microprocessor based relays. Electromechanical relays had no significant
drawback in their protection functions, but the additional features offered by the
microprocessor technologies encouraged the evolution of relays. The advantages of these relays
include.
Power consumption is less, hence burden on CTs and PTs reduced.
Quick response, long life, shock proof, fewer problems of maintenance, high reliability
and a high degree of accuracy. Quick reset action – a high reset value and absence of
Functioning:
The out of instrument transformers are applied to analog input subsystem to the relay.
This subsystem electrically isolates the relay from the power system reduces the level of the
input voltages, converts currents to equivalent voltages and removes high frequency
components from the input signals using analog filters. The outputs of the analogue input
subsystem are applied to the analog interface which includes amplifiers, multiplexes and
analogue to digital converters.
Relay Settings:
Introduction:
Self power device, displays 3 - ɸ Voltage during health conditions. Also,monitors phase
failuresPhase unbalance,phase reversal,over voltage & under voltage in a 3 - ɸ4 wire system.
Parameters
in current
R–V
Y–V
B–V
RY – V
YB – V
RB – V
R–A
Y–A
B–A
MENU/ENTER/HOLD/SCROLL KEY
RUN MODE: used to select scroll/hold the parameters.
PROGRAM MODE: Used to enter into program mode.
: Used to select next parameters.
INC KEY
PROGRAM MODE: Used to increase the values.
DEC KEY
PROGRAM MODE: Used to decrease the values.
MANUAL/ESC KEY
RUN MODE: When fault recovery happens this key shall be
used to load ON/OFF manually.
PROGRAM MODE: It is used to view the previous
parameters.
RUN Mode:
1. On power application, relay will be in NC condition for approximately 10 sec.
2. During health condition, all the voltage parameters shall be displayed with
instantaneous values. Relay and relay LED will be in ON or OFF condition depending
upon the relay ‘y’ or relay ‘n’ settings.
3. During fault condition, type of fault shall be displayed with relay OFF or ON status
depending on relay ’y’ or ‘n’ setting.
PROGRAMMING FACTORY
PARAMETERS RANGE SETTINGS
S. NO DISPLAY
CODE
15) “nUOL” Nominal voltages:415V 415
16) “OUOL” Over Voltage Range: 5 to 100V 030
17) “UUOL” Under Voltage Range: 5 to 100V 030
18) “Ucrt” Under Current Range:20 – 95% 20
19) “PUbl” Phase Unbalance Range: P 1 – 20% 20
20) “IrdY” Inrush delay Range: 1- 60sec 01
21) “tdOU” Trip delay Over Voltage range: 1 – 250sec 005
22) “tdUU” Trip delay Under Voltage range: 1 – 250sec 005
23) “tdUC” Trip delay Under Current range: 1 – 250sec 005
24) “tdUb” Trip delay Un-balance range: 1 – 250sec 005
25) bYPS “OUL Bypass Over Voltage n
Y/n”
26) bYPS “UUL Bypass Under Voltage n
Y/n”
27) bYPS “UCt Y/n” Bypass Under Current n
28) bYPS “UBL Bypass Phase Unbalance n
Y/n”
29) CntL rLY ’n’ Relay and status LED OFF in health V
condition
rLY ’Y’ Relay and status LED ON in health
condition
Procedure:
S.No. Operating Time (sec) Set Voltage (V) Fault Voltage (V)
Model Graphs:
Where,
Vs = Pick up setting in volts Vn = PT rating 110V
a = weight of the switch in ON position
Note: In Under voltage mode, continuing with above example, the pick up setting
becomes
Vs=(1-0.30) =70% of Vn. For 110 volts Vn, the pick up voltage becomes 77 volts. If
Vn=415, then pick up voltage becomes 290.5 volts. Where voltages below this set
value, relay picks up and trips according to selected trip time characteristics.
T = K (0.1+∑t) where
T = Trip time in seconds.
K = Constant depending on Trip Time
Characteristic selected Normal Inverse (3.5 secs) in
OV mode when fault is 2Vs
Normal Inverse (5.7 secs) in UV mode when fault is 0.5Vs.
1.0 Definite Time (1.0 sec)
10.0 Definite Time (10 sec)
100.0 Definite Time (100 sec)
t=weight of the switches in ON position
Result: The performances of microprocessor over voltage relays are studied and the graph
between operating time and voltage is drawn.
Aim: To protect the transformer from any internal faults in between primary and secondary
by detecting the primary and secondary currents, using the differential protection relays.
Apparatus Required:
1) An Isolation transformer 500VA, 230V/230V
2) Differential protection unit
3) 1 - ɸ Variac 10A, 230V/270V
4) Rheostat 100 ohms /5A
Theory:
In distribution transformers, if any fault occurs in oil, can be detected by Buchholz
relay and the transformer will be protected by Buchholz relay trip mechanism. But this relay
will not protect if any fault occurs within the transformer windings. Hence to protect the
transformer from fault currents in primary & secondary windings, the differential protection
relay to be used.
The current coil in the relay will sense the fault currents and will activate the trip
circuit of the relay and disconnect the load from transformer when fault currents are
detected
The CTs` used in primary & secondary as per the circuit shown below, are
connected to the respected relays of primary & secondary in series when fault currents
occur than the relay gets activated and trip the load.
Description:
Generally “Differential protection” is provided in the electrical power transformer
rated more than 5 MVA. The differential relays normally respond to those faults which
occur inside the differential protection zone of the transformer.
The differential relay actually detects the primary and secondary faults, if any, and
in turn trip the load connected to the transformer. The primary current Ip and secondary
current Is is set in the relay through set mechanism and if any faults occurs in the
transformer, these currents will increase the set value, then the trip mechanism will activate
and trips the relay.
Principal of Operation:
CIRCUIT DIAGRAM:
PROCEDURE:
1. Make the connections as shown in fig.
2. Select the transformation ratio 2:1 and the C.T. ratios of 2:1 and 4:1Set PSM of
the relay equal to 0.5.
3. Apply rated voltage 230V to primary by varying the variac.
4. Without applying fault, note down different meter readings.
5. By applying load observe whether the relay is operating or not.
6. Now close the switch so as to create an internal fault.
7. Note the various ammeter readings when relay operates.
8. Create primary fault at different loads and note the various meter readings.
DISCUSSION QUESTIONS:
AIM: To test a given Current Transformer (CT) by using Resistance and Mutual Inductance.
APPARATUS:
a) Rheostat 50 ohms/ 2 amps…. 01 no
b) Galvanometer AC………. 01 no
c) Ammeters digital, 2 A…. 02 no`s
d) Built-in CT’S, current sources & mutual Inductance.
THEORY:
The current transformer is used with its primary winding connected in series with lines
carrying the current to be measured and hence, the primary current I dependent upon the load
connected to the system and is not determined by the load connected to the secondary winding
of the current transformer. Te primary winding consists of a few turns only so, there is no
appreciable voltage drop across it. The secondary winding of the current transformer has more
number of turns, the exact number being determined b the turn’s ratio. The ammeter is
connected directly across the secondary winding terminals. Thus, a current transformer operates
its secondary winding nearly under short circuit conditions.
S and X are standard and are unknown transformers respectively, the primary winding is
connected in series and supplied with current from a suitable source. The secondary windings
are also connected in series, with such polarity that both tend to send current in the same
direction, and any desired impedance loads such as Zs and Zx complete the circuit. A suitable
detector D is then connected so as to bridge across between the transformers.
It is evident that the current Δτ through the detectors is necessarily equal to the vector
differences in the secondary current IS AND Ik of the transformers. Consequently, if the
magnitude and phase are measured, the difference in performance of the two transformers can
be computed.
PROCEDURE:
1) Connect the circuit as per the diagram given below.
2) Switch on the supply and increase the voltage to primary winding of PT by varying the
auto transformer, and note down the readings.
3) Adjust the rheostat (r) such that the galvanometer reads zero (null deflector), then again
note down the readings.
4) Bring back the auto transformer to its initial position and switch of the supply.
Front panel:
For both C.T & P.T
All connections should be tight and right as per the given circuit diagram.
Proper range of meters should be selected.
Un-insulated parts shouldn’t be touched.
Ammeter should always be connected in series, and volt meter in parallel with the
circuit.
Before switching ON the circuit, check whether the position of pointer in the meters is
at zero or not, if not then bring them to zero.
Checks for parallax error, if it exists then remove it.
TABULAR COLUMN:
CT CT
S.No C.T Range
Primary Current (A) Secondary Current (A)
1
RESULT: Current Transformer (CT) is tested by using the given resistance and Mutual
Inductance.
APPARATUS:
1) Potential Transformer, 230 V /230 V - 01 No
2) Galvanometer, AC - 01 No
3) Built-in Mutual Inductance - 01 No
4) Built-in 1-phaseVariac, 230/270 V, AC, 2 amps - 01 No
5) Rheostat, 50 ohms/2 amps - 01 No
6) Digital Voltmeter, AC, 300 V - 01 No
7) Digital Ammeters, AC, 2 amps - 02 No`s
8) Rheostat, 150 ohms/2amps - 01 No
THEORY:
The transformer used for voltage measurement in a given circuit are called potential
transformers or P.T’s. Potential transformers are used to operate voltmeters, the potential coils
of watt meters and relays from high voltage lines. The P.T’s are as similar to power
transformers except loading and is quite small.
Effect of power factor:
The transformation ratio of the PT is increased if secondary burden is inductive in
nature. The power factor reduces if secondary burden increases and power factor increases if
burden is reduced and it can be observed by connecting an adjustable inductive load across the
P.T.
Comparison method:
This method is similar to Silsbee’s deflection comparison method for current
transformers. The ratio and phase angle errors of a test transformer are determined in the terms
of a standard transformer having a same ratio. The two transformers primaries are joined
together in parallel. The load is to be connected in the secondary of the test transformer
The two wattmeter’s voltage coils are to be connected across the standard transformer and
current coils are connected in series and supply to be taken from phase shifting transformer.
The voltmeters are to be connected across both the transformers and ammeter to be connected
across the secondary of the test transformer.
Test method:
1) Supply to be given to the transformers from Variac.
2) Apply 230V AC to the P.T
3) Supply to be given to the phase shifting transformer
4) Adjust the rheostat such that wattmeter w reads zero.
Calculations of ratio:
w11 is the reading of the wattmeter W1
w22 is the reading of the wattmeter W2
Ratio of transformers Rt / Rs = Vt / Vs = Vt*I / Vs*I = w11 / (w11-w12)
Ratio of the transformer under test Rt= Rs( 1+ w12 / w11)
CIRCUIT DIAGRAM:
Front panel:
For both C.T & P.T
TABULAR COLUMN:
PT PT
S.No P.T Range
Primary Voltage (V) Secondary Voltage (V)
1
RESULT: The given Potential Transformer (PT) is tested by using Mutual Inductance.
Aim: To test the HT Insulator String dielectric strength of the given 11 KV Insulator.
The unit front panel consists of a on / off switch for High Voltage source to on /off.
Red and Banana terminals for input supply from Main CT, PT control panel.
HT supply on Indication.
HT trip indication is to indicate the HT trip, when Insulation breaks down above 11 KV.
HV Digital voltmeter to show the supplied voltage across insulator in Kilo Volts.
Front panel:
The ht insulator is rated for 11kv, and is placed in a ms box on a hylem sheet. A
transformer designed for 11 kv is supply to insulator string. The 11 kv supply is connected to
bus bar insulator fixed inside the box, which is to be tested. The secondary 0 volts winding of
transformer is connected to the bus bar insulator through insulator string.
Switch on the insulator string unit to get the power to the transformer and to the digital
voltmeter.
The Variac in main control unit of ct, pt control panel is to be varied till it crosses the
break down voltage of the insulator string. This could be more than 12 KV. When the voltage
applied across the string insulator crosses more than 12 KV, then the breaking voltage applies
and it trips. Switch off the unit and make sure that the Variac is kept in zero position.
High voltage is supplied to the unit while testing. Please do not put hand inside the unit
while testing. It is dangerous. Before opening top cover for any reason, switch off both main
unit and insulator string unit for safety.
AIM:
To draw the power circle diagrams of a 3-φ transmission line model.
APPARATUS:
CIRCUIT DIAGRAM:
PROCEDURE:
CALCULATIONS:
Aim: To draw Power Circle Diagrams of a 3-ϕ Transmission Line model by conducting OC &
SC Test using ABCD constants.
Apparatus:
1) Transmission line model 3-Ф, 500kV, 1000 MW, 250km long 1 No.
2) Voltmeter 0 – 600V, MI 2 No.
3) Ammeter 0- 10A, MI 2 No.
4) Auto transformer 3-Φ, 230V/ 0-270V, 10A, 50Hz 1 No.
5) UPF Wattmeter 150/300V, ½ A 1 No.
Front Panel:
Theory:
The expressions for complex number receiving and sending end powers are
The units for SR and SS, are MVA (three-phase) with voltages in KV line.
It follows from Eq. (1) that the centre of receiving-end circle is located at the tip of the phasor.
The receiving – end circle diagram is drawn as shown in the figure 1. The centre is
located by drawing OCR at an angle (β – α) in the positive direction from the negative MW-
axis.
From the centre CR the receiving – end circle is drawn with the radius given in equation (6).
The operating point M is located on the circle by means of the received real power PR.
The corresponding QR can be immediately read from the circle diagram. The torque
angle δ can be read in accordance with the positive direction indicated from the reference line.
For constant lVRl, the centre CR remains fixed and concentric circles result for varying lVSl.
However, for the case of constant lVSl and varying lVRl the centres of circles move along the
line OCR, and have radii in accordance to lVSl lVR1/1B1.
Similarly, it follows from Eq. (2) that the centre of the sending-end circle is located at the
tip of the phasor
The sending-end circle diagram is shown in Fig. 2. The centre is located by drawing
OCS, at angle (β - α) from the positive MW-axis. From the centre the sending-end circle is
drawn with a radius 1VS1 1VR1/1B1 (same as in the case of receiving-end). The operating
point N is located by measuring the torque angle δ (as read from the receiving-end circle
diagram) in the direction indicated from the reference line.
For constant 1VS1 the centre CS remains fixed and concentric circles result for
varying1VR1.
However, if 1VR1 is fixed and 1VS1 varies, the centers of the circles move along the
line OCS and have radii in accordance to 1VR11VS1/1B1.
For the case of a short line with a series impedance 1Z1∟θ, the simplified circle
diagrams can be easily drawn by recognizing
o 1A1 = 1D1 = 1, α =0
o 1B1 = 1Z1, β = θ.
The corresponding receiving – and sending –end circle diagrams have been drawn in
Fig.3 and Fig.4.
Circuit Diagram:
Observations:
*Note that all parameters A, B, C, D and the measured quantities Zoc and Zsc are complex
Numbers.
Result:
Construct the receiving end and sending end circle diagrams as per the procedure described in
the theory.
Aim: To obtain ABCD parameters of a long transmission line model by performing open
circuit and short circuit test on both sending and receiving end.
Apparatus:
1. Built-in Transmission line model 3-Ф, 500kV, 1000 MW, 250km long 01 No
Front panel:
Transmission line parameters include series resistance and inductance and shunt capacitance.
The line models are classified by their length as below:
1. Short line approximation for lines that are less than 80 km long.
2. Medium line approximation for lines whose lengths are between 80 km to 250 km.
3. Long line model for lines that are longer than 250 km.
If a transmission line is erected, the constants are measured by conducting the OC & SC tests
at the two ends of the line. In a four terminal passive network the voltage and current on the
receiving end and sending end are related by the following pair of equations:
Vs = AVr + BIr Is = CVr + DIr
ABCD parameters are used for relating the sending end voltage and current to the receiving
end voltage and currents.
Consider the power system shown in Fig. 1. In this the sending and receiving end voltages are
denoted by VS and VR respectively. Also the currents are IS and IR entering and leaving the
network respectively. The sending end voltage and current are then defined in terms of the
ABCD parameters as
where A, B, C, D are called the constants of the network. The transmission line is also a
four terminal network
From equation A= Vs / Vr (Ir=0)
This means A is the voltage impressed at the sending end per volt at the receiving end
when receiving end is open. It is dimensionless.
B= Vs/Ir (Vr=0)
B is the voltage impressed at the sending end to have one ampere at the short circuited
receiving end. This is known as transfer impedance in network theory.
C= Is /Vr (Ir=0)
C is the current in amperes into the sending end per volt on the open-circuited receiving
end.It has the dimension of admittance.
D= Is/Ir (Vr=0)
D is the current at the sending end for one ampere of current at the short circuited receiving
end. The constants A, B, C and D are related for a passive network as follows:
AD – BC = 1
The ABCD constants can be used for calculation of regulation of the line as follows: Then
determine sending end voltage using relation
Vs = AVr + BIr
To determine Vr ′ the no load voltage at the receiving end, is made use of V r′ = Vs/A,
when Ir = 0
% Regulation = [(Vr ′-Vr)/ Vr]*100.
% Regulation = [((Vs/A)-Vr)/ Vr]*100.
This implies that A is the ratio of sending end voltage to the open circuit receiving end
voltage. This quantity is dimension less. Similarly,
i.e., B, given in Ohm, is the ratio of sending end voltage and short circuit receiving end
current. In a similar way we can also define C & D as
Procedure:
TABULAR FORM:
% Voltage
S.NO TYPE VS IS VR IR
regulation
1 Open circuit
2 Short circuit
CALCULATIONS:
A= Vs / Vr (Ir=0)
B= Vs/Ir (Vr=0)
C= Is /Vr (Ir=0)
D= Is/Ir (Vr=0)
DISCUSSION QUESTIONS:
1. What are A,B,C,D constants?
2. Prove AD-BC = 1