summaryrefslogtreecommitdiff
path: root/83/CH5/EX5.11/example_5_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '83/CH5/EX5.11/example_5_11.sce')
-rwxr-xr-x83/CH5/EX5.11/example_5_11.sce19
1 files changed, 19 insertions, 0 deletions
diff --git a/83/CH5/EX5.11/example_5_11.sce b/83/CH5/EX5.11/example_5_11.sce
new file mode 100755
index 000000000..19bd34f6a
--- /dev/null
+++ b/83/CH5/EX5.11/example_5_11.sce
@@ -0,0 +1,19 @@
+//Chapter 5
+//Example 5.11
+//page 172
+//To determine sending-end voltage.maximum power delivered
+clear;clc;
+
+A=0.93*(cosd(1.5)+%i*sind(1.5));
+B=115*(cosd(77)+%i*sind(77));
+Vr=275;
+Ce=abs(A/B)*Vr^2;
+printf('Centre of the receiving end circle is = %0.1f MVA\n\n',Ce);
+CrP=850;Vs=CrP*abs(B)/Vr;
+printf('(a) From the diagram,\n\tCrP=%d \n \tSending end voltage|Vs|= %0.1f kV\n\n',CrP,Vs);
+Vs=295; //given
+r=(Vs*Vr)/abs(B);
+Pr_m=556; //from the diagram
+printf('(b) Radius of the circle diagram = %0.1f MVA\n\t PR_max=%d MW\n\n',r,Pr_m);
+Ps=295; //from the diagram;
+printf('(c) Additional MVA to be drawn from the line is = P''S=%d MVAR\n\n',Ps); \ No newline at end of file