summaryrefslogtreecommitdiff
path: root/3472/CH17/EX17.1/Example17_1.sce
blob: 358b50f6ea5e27790613bcdb05d477de5a0197c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// A Texbook on POWER SYSTEM ENGINEERING
// A.Chakrabarti, M.L.Soni, P.V.Gupta, U.S.Bhatnagar
// DHANPAT RAI & Co.
// SECOND EDITION 

// PART II : TRANSMISSION AND DISTRIBUTION
// CHAPTER 10: POWER SYSTEM STABILITY

// EXAMPLE : 10.1 :
// Page number 270
clear ; clc ; close ; // Clear the work space and console

// Given data
Z = 0.1        // Impedance of transmission line(p.u)
M = 0.3        // Stability margin
X = 1.0        // Constant(p.u)

// Calculations
sin_delta_0 = 1-M                // Sin(δ_0)
delta_0 = asind(sin_delta_0)     // δ_0(°)
P_0 = X/Z*sin_delta_0            // Magnitude of P_0(p.u)

// Results
disp("PART II - EXAMPLE : 10.1 : SOLUTION :-")
printf("\nOperating power angle, δ_0 = %.2f° ", delta_0)
printf("\nP_0 = %.2f p.u", P_0)