diff options
Diffstat (limited to '1938/CH5/EX5.29/5_29.sce')
-rwxr-xr-x | 1938/CH5/EX5.29/5_29.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/1938/CH5/EX5.29/5_29.sce b/1938/CH5/EX5.29/5_29.sce new file mode 100755 index 000000000..f951f96e3 --- /dev/null +++ b/1938/CH5/EX5.29/5_29.sce @@ -0,0 +1,16 @@ +clc,clear
+printf('Example 5.29\n\n')
+
+V_L=3300
+VA=200*10^3
+R_a=0.6, X_s=6//armature resistance and synchronous reactance
+
+I_L=VA/(sqrt(3)*V_L)//VA=sqrt(3)V_L*I_L
+I_a=I_L
+V_ph=V_L/sqrt(3)
+phi=acos(0.8)
+E_ph=sqrt((V_ph*cos(phi)+I_a*R_a)^2+(V_ph*sin(phi)+I_a*X_s)^2)
+
+regulation=100*(E_ph-V_ph)/V_ph
+printf('Regulation at 0.8 lagging power factor is %.3f percent',regulation)
+printf('\n Note :\n Regulation is positive for lagging power factor loads')
|