summaryrefslogtreecommitdiff
path: root/431/CH5/EX5.14/EX5_14.sce
diff options
context:
space:
mode:
Diffstat (limited to '431/CH5/EX5.14/EX5_14.sce')
-rwxr-xr-x431/CH5/EX5.14/EX5_14.sce25
1 files changed, 25 insertions, 0 deletions
diff --git a/431/CH5/EX5.14/EX5_14.sce b/431/CH5/EX5.14/EX5_14.sce
new file mode 100755
index 000000000..fa7e73ea5
--- /dev/null
+++ b/431/CH5/EX5.14/EX5_14.sce
@@ -0,0 +1,25 @@
+//chapter 5
+//example 5.14
+//page 443
+clear;
+clc;
+disp("example 5.14");
+disp("star connected alternator")
+printf("\n");
+KVA=1500; //rating
+ph=3; //3-phase
+V_l=6600; //voltage
+Ra=0.4 //armature resistance
+Xs=6; //reactance
+Ia=(KVA*1000)/(sqrt(3)*V_l);
+printf("Full-load current= %d A\n",Ia);
+V=V_l/sqrt(3);
+printf("Voltage per phase=%d V\n",V);
+disp("for 0.8 lagging power facor");
+pf=0.8; //power factor
+phi=acosd(pf);
+E=sqrt((V*cosd(phi)+Ia*Ra)^2+(V*sind(phi)+Ia*Xs)^2)
+printf("induced emf=%f V\n\n",E);
+disp("then at 0.8 leading power factor");
+Vt=4743; //solved manually
+printf("termial Voltage, line-to-line=%d V\n",(sqrt(3)*Vt)) \ No newline at end of file