summaryrefslogtreecommitdiff
path: root/3760/CH4/EX4.28/Ex4_28.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3760/CH4/EX4.28/Ex4_28.sce
parentb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff)
downloadScilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2
Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip
initial commit / add all books
Diffstat (limited to '3760/CH4/EX4.28/Ex4_28.sce')
-rw-r--r--3760/CH4/EX4.28/Ex4_28.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/3760/CH4/EX4.28/Ex4_28.sce b/3760/CH4/EX4.28/Ex4_28.sce
new file mode 100644
index 000000000..724f97ad8
--- /dev/null
+++ b/3760/CH4/EX4.28/Ex4_28.sce
@@ -0,0 +1,24 @@
+clc;
+//Armature reaction is neglected
+Vt=220;//output voltage
+Ra=0.2;//armature circuit resistance
+Rf=110;//field circuit resistance
+n1=1500;//speed of rotor at no load
+Il1=5;//curent drawn by motor in ampere at no load & 1500 rpm
+Il2=52;//curent drawn by motor in ampere at rated load & rated voltage
+If=Vt/Rf;//shunt field current
+Ia1=Il1-If;//armature current at no load
+Ea1=Vt-Ia1*Ra;//counter emf at no load
+Pr=Ea1*Ia1;//rotational losses at no load
+//Rotational losses at full load & no load are same
+Ia2=Il2-If;//armature current at full load
+Ea2=Vt-Ia2*Ra;//counter emf at full load
+Pem=Ia2*Ea2;//electromagnetic power
+//Here phi_1(no load flux)=phi_2(full load flux), because the field current is constant & effect of AR is neglected.
+//Ea1/Ea2=(n1*phi_1)/(n2*phi_2);where n1 & n2 are speed of rotor at no load & full load respectively.
+n2=fix((n1*Ea2)/(Ea1));
+Psh=Pem-Pr;//shaft power
+Wm=(2*%pi*n2)/60;//angular velocity of shaft at full load
+Tsh=Psh/Wm//shaft torque
+printf('The motor speed is %f rpm.\n',n2);
+printf('Rated shaft torque is %f Nm.',Tsh);