summaryrefslogtreecommitdiff
path: root/3872/CH5/EX5.4/Ex5_4.sce
blob: 56fa8cbe0fded77c51590156b817a0f82603df26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Book - Power System: Analysis & Design 5th Edition
// Authors - J. Duncan Glover, Mulukutla S. Sharma, Thomas J. Overbye
// Chapter - 5 : Example 5.4
// Scilab Version 6.0.0 : OS - Windows

clc;
clear;

L = 300;                                   // Line length in km 
SI = 266.1;                                // Surge impedance in Ohm
lambda = 5000;                             // Wavelength in km
Vs = 765;                                  // Sending end voltage in kV
Vr = Vs;                                   // Receiving end voltage in kV

SIL = (Vs)^2/SI;                           // Surge impedance load in MW 
Vspu = (765/765);                          // Sending end voltage in per unit
Vrpu = (765/765);                          // Receiving end voltage in per unit
Pmax = Vspu*Vrpu*SIL/sin(2*%pi*L/lambda);  // The theoretical steady state stability limit of a lossless line in MW
SSL = 2.72*SIL;                            // Theoretically steady state stability limit in MW; taken from Figure 5.12

printf('\nThe steady state stability limit of a lossless line is  (Pmax) = %0.0f  MW', Pmax);
printf('\n\n Theoretically steady state stability limit is  (SSL) = %0.0f  MW', SSL);