summaryrefslogtreecommitdiff
path: root/Working_Examples/83/CH5/EX5.9
diff options
context:
space:
mode:
Diffstat (limited to 'Working_Examples/83/CH5/EX5.9')
-rwxr-xr-xWorking_Examples/83/CH5/EX5.9/example_5_9.sce33
-rwxr-xr-xWorking_Examples/83/CH5/EX5.9/result_example_5_9.txt11
2 files changed, 44 insertions, 0 deletions
diff --git a/Working_Examples/83/CH5/EX5.9/example_5_9.sce b/Working_Examples/83/CH5/EX5.9/example_5_9.sce
new file mode 100755
index 0000000..7ca7bf2
--- /dev/null
+++ b/Working_Examples/83/CH5/EX5.9/example_5_9.sce
@@ -0,0 +1,33 @@
+//Chapter 5
+//Example 5.9
+//page 165
+//to determine power,voltage,compensating equipment rating
+clear;clc;
+A=0.85;
+B=200;
+
+//case(a)
+Vs=275000;
+Vr=275000;
+a=5;b=75; //alpha and beta
+Qr=0;
+//from equation 5.62
+d=b-asind((B/(Vs*Vr))*(Qr+(A*Vr^2*sind(b-a)/B))); //delta
+Pr=(Vs*Vr*cosd(b-d)/B)-(A*Vr^2*cosd(b-a)/B);
+printf('\n\ncase(a)\nPower at unity powerfactor that can be received =%0.1f MW',Pr/10^6);
+
+//case(b)
+Pr=150*10^6;
+d=b-acosd((B/(Vs*Vr))*(Pr+(A*Vr^2*cosd(b-a)/B))); //delta
+Qr=(Vs*Vr*sind(b-d)/B)-(A*Vr^2*sind(b-a)/B);
+Qc=-Qr;
+printf('\n\ncase(b)\nRating of the compensating equipment = %0.2f MVAR',Qc/10^6);
+printf('\ni.e the compensating equipment must feed positive VARs into the line');
+
+
+//case(c)
+Pr=150*10^6;
+Vs=275000;
+//by solving the two conditions given as (i) and (ii), we get
+Vr=244.9*10^3;
+printf('\n\ncase(c)\nReceiving end voltage = %0.1f kV',Vr/1000);
diff --git a/Working_Examples/83/CH5/EX5.9/result_example_5_9.txt b/Working_Examples/83/CH5/EX5.9/result_example_5_9.txt
new file mode 100755
index 0000000..18b9c60
--- /dev/null
+++ b/Working_Examples/83/CH5/EX5.9/result_example_5_9.txt
@@ -0,0 +1,11 @@
+
+
+case(a)
+Power at unity powerfactor that can be received =117.6 MW
+
+case(b)
+Rating of the compensating equipment = 27.40 MVAR
+i.e the compensating equipment must feed positive VARs into the line
+
+case(c)
+Receiving end voltage = 244.9 kV