summaryrefslogtreecommitdiff
path: root/3760/CH4/EX4.43/Ex4_43.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.43/Ex4_43.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.43/Ex4_43.sce')
-rw-r--r--3760/CH4/EX4.43/Ex4_43.sce22
1 files changed, 22 insertions, 0 deletions
diff --git a/3760/CH4/EX4.43/Ex4_43.sce b/3760/CH4/EX4.43/Ex4_43.sce
new file mode 100644
index 000000000..f5e08494a
--- /dev/null
+++ b/3760/CH4/EX4.43/Ex4_43.sce
@@ -0,0 +1,22 @@
+clc;
+v=230; // rated voltage of dc shunt motor
+n1=900; // speed at which motor is running
+ia1=2; // armature current at n=900 rpm
+ra=0.5; // armature resistance
+ia2=20; // armature current at rated load and rated voltage
+Ea=v-ia1*ra; // counter EMF at no load
+k=(Ea*60)/(2*%pi*n1); // constant term used for calculating back EMF
+disp('case a');
+rs=2; // resistance in series with armature
+rp=3; // resistace in parallel with series combination of rs and ra
+A=rp/(rp+rs);
+wmo=(1/k)*(A*v-ia1*(A*rs+ra)); // no-load speed
+wml=(1/k)*(A*v-ia2*(A*rs+ra)); // full-load speed
+sr=((wmo-wml)/wml)*100; // percent speed regulation
+printf('Speed regulation for first case is %f percent\n',sr);
+disp('case b');
+rs=3; // resistance in series with armature
+wmo=(1/k)*(v-ia1*(rs+ra)); // no-load speed
+wml=(1/k)*(v-ia2*(rs+ra)); // full-load speed
+sr=((wmo-wml)/wml)*100; // percent speed regulation
+printf('Speed regulation for second case is %f percent\n',sr);