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 /3760/CH4/EX4.42 | |
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 '3760/CH4/EX4.42')
-rw-r--r-- | 3760/CH4/EX4.42/Ex4_42.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/3760/CH4/EX4.42/Ex4_42.sce b/3760/CH4/EX4.42/Ex4_42.sce new file mode 100644 index 000000000..8952674cd --- /dev/null +++ b/3760/CH4/EX4.42/Ex4_42.sce @@ -0,0 +1,16 @@ +clc;
+N=1000; // speed of dc series motor
+v=250; // supply from mains
+i=50; // current drawn from mains
+r=0.6; // armature + field resistance
+rg=4.4; // additional resistance
+// field flux is proportional to armature current
+Ea1=v-i*r; // counter EMF at 1000 rpm
+// Ea2=v-(n2/20)*(r+rg) where Ea2 is counter EMf at speed n2 . taking ratio of Ea2/Ea1 we obtain a quadratic equation in n2 whose terms are given by
+t1=(Ea1*i)/N;
+t2=(N*i)*((r+rg)/(N/i));
+t3=-(N*i*v);
+p=[ t1 t2 t3];
+n=roots(p);
+printf('New speed of motor is %f rpm',ceil(n(2)));
+
|