diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1319/CH6/EX6.19/6_19.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1319/CH6/EX6.19/6_19.sce')
-rw-r--r-- | 1319/CH6/EX6.19/6_19.sce | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/1319/CH6/EX6.19/6_19.sce b/1319/CH6/EX6.19/6_19.sce new file mode 100644 index 000000000..40f868c89 --- /dev/null +++ b/1319/CH6/EX6.19/6_19.sce @@ -0,0 +1,28 @@ +//EMF and copper losses of a Shunt Motor
+
+clc;
+clear;
+
+V=250;
+I=200;
+Ra=0.02; // Armature Resistance
+Rf=50; // Field Resistance
+Pil=950; // Iron and frictional losses
+
+Ish=V/Rf; // Field Current
+Ia=Ish+I; // Armature Current
+
+Pac=(Ia^2)*Ra; // Armature copper loss
+Pfc=(Ish^2)*Rf;// Field copper loss
+
+Pc=Pac+Pfc;
+
+E=V+(Ia*Ra);
+
+Prime=(V*I)+Pil+Pc;// Ouput of prime mover is the input to the generator
+
+eff=(V*I*100)/Prime;
+
+printf('i) The EMF generated = %g V \n',E)
+printf('ii) Total Copper Loss = %g watts \n',Pc)
+printf('iii) Output of the prime mover is %g watts and the efficiency is %g percent \n',Prime,eff)
|