summaryrefslogtreecommitdiff
path: root/3872/CH5/EX5.8
diff options
context:
space:
mode:
Diffstat (limited to '3872/CH5/EX5.8')
-rw-r--r--3872/CH5/EX5.8/Ex5_8.JPGbin0 -> 27857 bytes
-rw-r--r--3872/CH5/EX5.8/Ex5_8.sce29
2 files changed, 29 insertions, 0 deletions
diff --git a/3872/CH5/EX5.8/Ex5_8.JPG b/3872/CH5/EX5.8/Ex5_8.JPG
new file mode 100644
index 000000000..7f44d7d33
--- /dev/null
+++ b/3872/CH5/EX5.8/Ex5_8.JPG
Binary files differ
diff --git a/3872/CH5/EX5.8/Ex5_8.sce b/3872/CH5/EX5.8/Ex5_8.sce
new file mode 100644
index 000000000..893eeccbc
--- /dev/null
+++ b/3872/CH5/EX5.8/Ex5_8.sce
@@ -0,0 +1,29 @@
+// Book - Power System: Analysis & Design 5th Edition
+// Authors - J. Duncan Glover, Mulukutla S. Sharma, Thomas J. Overbye
+// Chapter - 5 : Example 5.8
+// Scilab Version 6.0.0 : OS - Windows
+
+clc;
+clear;
+
+N = 6; // Number of transmission lines
+Vs = 765; // Transmission voltage in kV
+l = 167; // Intermediate substations distance in km
+Pl=9000; //Load power , value taken from Example 5.7
+lambda = 5000; // Wavelength in km
+Beta = (2*%pi)/lambda; // Taken from Eq 5.4.15
+L = 500; // Eqivalent pi circuit lenght in km
+Zc = 266; // Characteristic impedance of the line in Ohm
+X = Zc*sin(Beta*L); // Series reactance in Ohm ; taken from Eq 5.4.10
+Xeq = ((1/5)*((2/3)*X))+((1/4)*(X/3)); // Equivalent reactance of five lines with one line section out of service in Ohm
+Vr = 0.95*765; // Receiving end voltage in kV
+delta = 35; // Phase angle in degree
+P = ((Vs*Vr)/Xeq)*sind(delta); // Real power delivered in MW ; taken from Eq 5.4.26
+
+printf('Series reactance is (X) = %0.2f Ohm', X);
+printf('\nEquivalent reactance of five lines with one line section out of service is (Xeq) = %0.2f Ohm', Xeq);
+printf('\nReal power delivered is (P) = %0.0f MW', P);
+
+if 0.97*P>Pl //Assuming 3% as losses
+ printf('\n\nThe five instead of six 765-kV lines can transmit the required power in Example 5.7')
+end