diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1529/CH16/EX16.13 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1529/CH16/EX16.13')
-rwxr-xr-x | 1529/CH16/EX16.13/16_13.sce | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/1529/CH16/EX16.13/16_13.sce b/1529/CH16/EX16.13/16_13.sce new file mode 100755 index 000000000..4989a2d9f --- /dev/null +++ b/1529/CH16/EX16.13/16_13.sce @@ -0,0 +1,30 @@ +//Chapter 16, Problem 13
+clc;
+eff = 0.8; // effficiency
+f = 50; // in ohm
+Pout = 4800; // in Watt
+pf1 = 0.625 // power factor
+pf2 = 0.95 // power factor
+V = 240; // in Volts
+//calculation:
+Pin = Pout/eff
+Im = Pin/(V*pf1)
+phi1 = acos(pf1)
+phi1d = phi1*180/%pi
+//When a capacitor C is connected in parallel with the motor a current Ic flows which leads V by 90°.
+phi2 = acos(pf2)
+phi2d = phi2*180/%pi
+Imh = Im*cos(phi1)
+//Ih = I*cos(phi2)
+Ih = Imh
+I = Ih/cos(phi2)
+Imv = Im*sin(phi1)
+Iv = I*sin(phi2)
+Ic = Imv - Iv
+C = Ic/(2*%pi*f*V)
+kvar = V*Ic/1000
+printf("\n\n (a)Current taken by the motor, Im = %.0f A",Im)
+printf("\n\n (b)Supply current after p.f. correction, I = %.2f A ",I)
+printf("\n\n (c)Magnitude of the capacitor current Ic = %.0f A",Ic)
+printf("\n\n (d)Capacitance, C = %.0f μF ",(C/1E-6))
+printf("\n\n (d)kvar rating of the capacitor = %.2f kvar ",kvar)
|