summaryrefslogtreecommitdiff
path: root/3760/CH4/EX4.53
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.53
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.53')
-rw-r--r--3760/CH4/EX4.53/Ex4_53.sce23
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);