summaryrefslogtreecommitdiff
path: root/3760/CH5/EX5.23/Ex5_23.sce
diff options
context:
space:
mode:
Diffstat (limited to '3760/CH5/EX5.23/Ex5_23.sce')
-rw-r--r--3760/CH5/EX5.23/Ex5_23.sce21
1 files changed, 21 insertions, 0 deletions
diff --git a/3760/CH5/EX5.23/Ex5_23.sce b/3760/CH5/EX5.23/Ex5_23.sce
new file mode 100644
index 000000000..384f5c428
--- /dev/null
+++ b/3760/CH5/EX5.23/Ex5_23.sce
@@ -0,0 +1,21 @@
+clc;
+v=1100; // rated voltage of motor
+ef=1650; // emf
+p=350; // input power in KW
+zs=0.7+3.2*%i; // synchronous impedance per phase
+vt=v/sqrt(3); // rated per phase voltage
+eft=ef/sqrt(3); // per phase emf
+i1=vt/abs(zs);
+printf('Current phasor lagging terminal voltage is %f A\n', i1);
+i2=eft/abs(zs);
+printf('Current phasor lagging excitation EMF is %f A\n', i2);
+ia=(p*1000)/(3*vt);
+printf('Working component of armature current is %f A',ia);
+disp('using this data vector diagram is drawn and value of ia and power factor is obtained');
+ia=194.5;
+pf=19.5;
+printf('Power factor is %f leading\n',pf);
+printf('Armature current is %f A\n',ia);
+de=acosd((ia^2-i1^2-i2^2)/(-2*i1*i2));
+printf('Load angle is %f degrees\n',de);
+