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.53/Ex4_53.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 '3760/CH4/EX4.53/Ex4_53.sce')
-rw-r--r-- | 3760/CH4/EX4.53/Ex4_53.sce | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/3760/CH4/EX4.53/Ex4_53.sce b/3760/CH4/EX4.53/Ex4_53.sce new file mode 100644 index 000000000..c51bc0de5 --- /dev/null +++ b/3760/CH4/EX4.53/Ex4_53.sce @@ -0,0 +1,23 @@ +clc;
+v=230; // rated voltage of motor
+p=6; // number of poles
+f=4*10^-3; // flux per pole in Wb/A
+T=20; // load torque
+n=800; // speed at T=20 N-m
+a=2; // for wave connected conductors number of parallel path
+z=432; // number of conductors
+r=1; // total resistance of motor
+// it is given that T=kn^2, therefore
+k=T/n^2; // proportionality of constant
+r1=(f*z*p)/(60*a); // ratio of back EMF to product of speed and armature current
+t=(r1*60)/(2*%pi); // ratio of full load torque to square of armature current
+// also Ea(back EMf)=v-ia*ra and r1=Ea/(n*ia) compairing both we get ia=v/(1+r1*n);
+// Also k*n2^2=t*ia^2 , in this expression putting value of ia and solving quadratic equation in n2
+t1=sqrt(k)*r1;
+t2=sqrt(k);
+t3=-sqrt(t)*v;
+p=[ t1 t2 t3 ];
+n2=roots(p);
+printf('Speed of motor is %f rpm\n',n2(2));
+ia=v/(1+r1*n2(2));
+printf('Armature current when motor is connected to rated supply is %f A',ia);
|