summaryrefslogtreecommitdiff
path: root/3760/CH4/EX4.41/Ex4_41.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.41/Ex4_41.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.41/Ex4_41.sce')
-rw-r--r--3760/CH4/EX4.41/Ex4_41.sce16
1 files changed, 16 insertions, 0 deletions
diff --git a/3760/CH4/EX4.41/Ex4_41.sce b/3760/CH4/EX4.41/Ex4_41.sce
new file mode 100644
index 000000000..f555bf515
--- /dev/null
+++ b/3760/CH4/EX4.41/Ex4_41.sce
@@ -0,0 +1,16 @@
+clc;
+V=240; // rated voltage of dc shunt motor
+n=800; // rated speed of dc shunt motor
+i=50; // rated current of dc shunt motor
+ra=0.2; // armature resistance
+pr=0.6; // reduction in load torque as a fraction of full load torque
+rg=2; // series resistance in armature circuit
+fr1=0.04; // weakening of field flux at full load
+fr2=0.02; // weakening of field flux at 60% of full load
+Ea1=V-(i*ra); // counter EMF at rated load
+ia2=(i*pr)*((1-fr1)/(1-fr2)); // armature current at reduced load torque
+Ea2=V-ia2*(rg+ra); // counter EMF at reduced load torque
+n2=(n*Ea2*(1-fr1))/(Ea1*(1-fr2));
+printf('Motor speed at reduced load torque is %f rpm',n2);
+
+