Exp 10 - Power System Stability - Teacher
Exp 10 - Power System Stability - Teacher
Exp 10 - Power System Stability - Teacher
Introduction:
In this experiment, power system stability analysis in the simulation environment will be
performed.
Power System Stability: The power system stability is the property of the system which
enablesthe synchronous machines of the system to respond to a disturbance from a normal
operatingcondition so as to return to a condition where their operation is again normal.
The electrical power is generated by synchronous generators that operate in synchronism with
therest of the system. A generator is synchronized with a bus when both of them have same
frequency,voltage and phase sequence. We can thus define the power system stability as the
ability of thepower system to return to steady state without losing synchronism.
The Swing Equation:Itis the fundamental equation that determines rotor dynamics in transient
stability studies. The per unit swing equation is given below.
Pm,pu: The mechanical power supplied by the prime mover minus mechanical losses, per-unit
Pe,pu: The electrical power output plus electrical losses, per-unit
Pa,pu: The accelerating power, per-unit
ω: Electrical radian frequency
ω,syn: Synchronous electrical radian frequency
ωpu: Per unit electrical frequency
δ: Power angle
H: Inertia constant
D is either zero or a relatively small positive number with typical values between 0 and 2
t: Time
When the swing equation is solved, the expression of δis expressed as a function of time. Thus,
the curve of δas function of time (t) is called swing curve.
Fig 1: Schematic diagram for stability studies. Transient reactances associated with E1′and
E2′are included in the transmission network.
δis called phase angle, or rotor angle, or power angle, or torque angle, or load angle, or
internal machine angle.
System Equivalent
In transient stability programs, more detailed models can be used to represent exciters, losses,
saturation, and saliency. However, the simplified model reduces model complexity while
maintaining reasonable accuracy in stability calculations. Each generator in the model is
connected to a system consisting of transmission lines, transformers, loads, and other machines.
To a first approximation the system can be represented by an “infinite bus” behind a system
reactance. An infinite bus is an ideal voltage source that maintains constant voltage magnitude,
constant phase and constant frequency. Fig. 3 shows a synchronous generator connected to a
system equivalent. The phase angle δof the internal machine voltage is the machine power angle
with respect to the infinite bus. The current of system equivalent circuit is-
Relevant theories must be studied from class lectures, text book and reference books.
Software Requirement:
Solution:
Reference(s):
Appendix:
Matlab Code:
clc
H = 5;
Wpu = 1;
line1_x = j*0.4;
line2_x = j*0.4;
xeq = xt+(line1_x*line2_x)/(line1_x+line2_x);
Pe = 1;
current = (Vterminal-Vinf)/xeq*sin(delta);
E_prime = Vterminal+current*gen_x;
xeq2 = gen_x+xt+(line1_x*line2_x)/(line1_x+line2_x);
Pe_new_max = E_prime*Vinf/xeq2;
plot(abs(Pe_new_max)*sin(0:pi/20:pi));
delta0 = (asin(1/abs(Pe_new_max)));
deltaCR = (acos((pi-2*delta0)*sin(delta0) - cos(delta0)));
deltamax = (pi-delta0);
delta0_degree = delta0*180/pi
deltaCR_degree = deltaCR*180/pi
deltamax_degree =deltamax*180/pi