summaryrefslogtreecommitdiff
path: root/1733/CH2/EX2.16/2_16.sce
diff options
context:
space:
mode:
Diffstat (limited to '1733/CH2/EX2.16/2_16.sce')
-rwxr-xr-x1733/CH2/EX2.16/2_16.sce17
1 files changed, 17 insertions, 0 deletions
diff --git a/1733/CH2/EX2.16/2_16.sce b/1733/CH2/EX2.16/2_16.sce
new file mode 100755
index 000000000..28f7ec8f4
--- /dev/null
+++ b/1733/CH2/EX2.16/2_16.sce
@@ -0,0 +1,17 @@
+//
+clc;
+disp('If E=100 V')
+Vm=230*2^0.5;
+E=100;
+R=0.5;
+Io=15;
+alph=acosd((E+15*0.5)*%pi/(2*Vm));
+printf("Firing Angle = %.2f degree", alph)
+pf=(100*15+15^2*0.5)/(230*15);
+printf("\nPower factor = %.3f lagging", pf)
+disp('If E=-100 V')
+E=-100;
+alph=acosd((E+15*0.5)*%pi/(2*Vm));
+printf("\nFiring Angle when E is -100 = %.2f W", alph)
+pf=(100*15-15^2*0.5)/(230*15);
+printf("\nPower factor = %.3f lagging", pf) \ No newline at end of file