summaryrefslogtreecommitdiff
path: root/3811/CH10/EX10.3/Ex10_3.sce
diff options
context:
space:
mode:
authorprashantsinalkar2017-10-10 12:27:19 +0530
committerprashantsinalkar2017-10-10 12:27:19 +0530
commit7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch)
treedbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /3811/CH10/EX10.3/Ex10_3.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 '3811/CH10/EX10.3/Ex10_3.sce')
-rw-r--r--3811/CH10/EX10.3/Ex10_3.sce24
1 files changed, 24 insertions, 0 deletions
diff --git a/3811/CH10/EX10.3/Ex10_3.sce b/3811/CH10/EX10.3/Ex10_3.sce
new file mode 100644
index 000000000..554c51dfa
--- /dev/null
+++ b/3811/CH10/EX10.3/Ex10_3.sce
@@ -0,0 +1,24 @@
+//Book Name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
+//chapter 10
+//example 10.3
+//edition 1
+//publishing place:Thomson Learning
+clc;
+clear;
+n1=1150;//full load speed in rpm
+V=300;//terminal voltage in volt
+f=80;//frequency in Hz
+Rr=0.5;//rotor resistance of the motor in ohm
+Xeq=3;//equivalent inductive reactance in ohm
+ns=1200;//nearest synchronous speed in rpm
+rpss=ns/60;
+omegas=(2*%pi*rpss);
+s1=(ns-n1)/ns;
+T6=(V^(2)*s1)/(omegas*Rr);//torque at the point 6
+T6=ceil(T6);
+mprintf("\nThe torque developed is %d Nm",T6)//approximated value
+s6=(T6*Rr*(-omegas))/V^(2);
+mprintf("\nThe slip is %f",s6)
+n6=(-ns)*(1-s6);
+mprintf("\nThe current of the induction motor does not surge to high value when the concurrent braking is implemented")
+