diff options
Diffstat (limited to '1319/CH8/EX8.18/8_18.sce')
-rw-r--r-- | 1319/CH8/EX8.18/8_18.sce | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/1319/CH8/EX8.18/8_18.sce b/1319/CH8/EX8.18/8_18.sce new file mode 100644 index 000000000..3fd725e0e --- /dev/null +++ b/1319/CH8/EX8.18/8_18.sce @@ -0,0 +1,36 @@ +//Stator Current and pf and efficiency of a motor operating at 0.03 slip
+
+clc;
+clear;
+
+V=400;
+Vph=V/sqrt(3);
+R1=0.2;
+R2=0.15;
+X1=%i*0.5;
+X2=%i*0.3;
+
+s=3/100;
+
+Ptl=2000; // Total Losses
+
+Z1=R1+X1;
+Z2=(R2/s)+X2;
+Zt=Z1+Z2; // Total Impedance of the circuit
+
+Is= Vph/Zt; // Stator Current
+
+Ctheta=atand(imag(Is)/real(Is)); // Phase angle of stator current
+
+pf= cosd(Ctheta); // Power factor lagging
+
+Pi=sqrt(3)*V*abs(Is)*cosd(Ctheta);
+
+Po=Pi-Ptl; // Power Output
+
+eff=Po*100/Pi;
+
+printf('For a 3 phase, 4 pole, 400V Induction Motor operating at 3 percent slip \n')
+printf('i) The Stator current = %g /_%g A \n',abs(Is),Ctheta)
+printf('ii) The p.f = %g lagging \n',pf)
+printf('iii) The efficiency = %g percent \n',eff)
|