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 /3811/CH7/EX7.9 | |
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 '3811/CH7/EX7.9')
-rw-r--r-- | 3811/CH7/EX7.9/Ex7_9.jpg | bin | 0 -> 18234 bytes | |||
-rw-r--r-- | 3811/CH7/EX7.9/Ex7_9.sce | 30 |
2 files changed, 30 insertions, 0 deletions
diff --git a/3811/CH7/EX7.9/Ex7_9.jpg b/3811/CH7/EX7.9/Ex7_9.jpg Binary files differnew file mode 100644 index 000000000..bdd6b7839 --- /dev/null +++ b/3811/CH7/EX7.9/Ex7_9.jpg diff --git a/3811/CH7/EX7.9/Ex7_9.sce b/3811/CH7/EX7.9/Ex7_9.sce new file mode 100644 index 000000000..52652c7e3 --- /dev/null +++ b/3811/CH7/EX7.9/Ex7_9.sce @@ -0,0 +1,30 @@ +//Book Name: Fundamentals of electrical drives by Mohamad A. El- Sharkawi
+//chapter 7
+//example 7.9
+//edition 1
+//publisher and place:Nelson Engineering
+clc;
+clear;
+V=480;//terminal voltage in volt
+p=6;//number of poles
+f=60;//frequency in hertz
+Xl=3;//inductive reactance in ohm
+Rs=.2;//stator resistance in ohm
+X2=2;//rotor reactance in ohm
+R2=0.1;//resistance reffered to the stator in ohm
+Xm=120;//magnetizing reactance in the linear region in ohm
+Xm1=42;//magnetizing reactance in the saturation region in ohm
+Td=100;//constant load torque in Nm
+n=900;//speed of the motor in rpm
+ns=(120*f)/p;//synchronous speed of the machine in rpm
+s=(ns-n)/ns;//slip of the machine
+//If the machine is in the linear region
+rps=ns/60;
+omegas=(2*%pi*rps);
+Is=sqrt(((Td*s*omegas)*((R2/s)^2+(X2+Xm)^2))/(3*Xm^2*R2));
+costheta=0.7;//assumed power factor value
+I1rated=(Td*omegas)/(sqrt(3)*V*costheta);
+mprintf("\nThe input current if the machine is in the linear region is %f A",I1rated)
+//if the machine is in saturation region
+Is1=sqrt(((Td*s*omegas)*((R2/s)^2+(X2+Xm1)^2))/(3*Xm^2*R2));
+mprintf("\nThe input current if the machine is in the saturation region is %f A",Is1)
|