diff options
Diffstat (limited to '147/CH14/EX14.32/Example14_32.sce')
-rw-r--r-- | 147/CH14/EX14.32/Example14_32.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/147/CH14/EX14.32/Example14_32.sce b/147/CH14/EX14.32/Example14_32.sce new file mode 100644 index 000000000..94493e1b2 --- /dev/null +++ b/147/CH14/EX14.32/Example14_32.sce @@ -0,0 +1,16 @@ +close();
+clear;
+clc;
+//From previous question
+Vo = 309.8;//V
+Vt = 127;
+Xd = 4;
+Xq = 2;
+delta = 20.25//Deg
+phi = 45;//Deg
+Pr = 20000;//VA
+Pf = 0.707;//lagging
+Pd = Vo*Vt/Xd*sin(delta*%pi/180)+Vt^2/Xq*(1/Xq-1/Xd)*sin(2*delta*%pi/180);
+Pl = Pr*Pf/3;
+Ps = 3*Vt^2/Xq*(1/Xq-1/Xd)*sin(2*delta*%pi/180);
+mprintf('Power developed by generator = %0.1f W\nPower supplied to the load = %0.1f W\nPower due to saliency = %0.0f W',Pd,Pl,Ps);
\ No newline at end of file |