summaryrefslogtreecommitdiff
path: root/1445/CH10/EX10.9/Ex10_9.sce
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1445/CH10/EX10.9/Ex10_9.sce
downloadScilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2
Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip
initial commit / add all books
Diffstat (limited to '1445/CH10/EX10.9/Ex10_9.sce')
-rw-r--r--1445/CH10/EX10.9/Ex10_9.sce41
1 files changed, 41 insertions, 0 deletions
diff --git a/1445/CH10/EX10.9/Ex10_9.sce b/1445/CH10/EX10.9/Ex10_9.sce
new file mode 100644
index 000000000..71a074562
--- /dev/null
+++ b/1445/CH10/EX10.9/Ex10_9.sce
@@ -0,0 +1,41 @@
+//CHAPTER 10- THREE-PHASE INDUCTION MACHINES
+//Example 9
+
+disp("CHAPTER 10");
+disp("EXAMPLE 9");
+
+//VARIABLE INITIALIZATION
+p=150*1000; //in Watts
+v=3000; //in Volts
+f=50; //in Hertz
+P=6; //number of poles
+ratio=3.6; //ratio of stator turn to rotor turn
+r2=0.1; //rotor resistance in Ohms
+L=3.61/1000; //leakage inductance per phase in Henry
+
+//SOLUTION
+
+//solution (a)
+X2=2*%pi*f*L;
+E1=v/sqrt(3);
+E2=E1*(1/ratio);
+z1=sqrt((r2^2)+(X2^2));
+I2=E2/z1; //rotor current
+I_s=I2/ratio; //stator current
+N_s=(120*f)/P;
+w=(2*%pi*N_s)/60;
+T_s1=(3*E2^2*r2)/(w*z1^2);
+disp(sprintf("(a) The starting current is %.1f A and torque is %.0f N-m",I_s,T_s1));
+
+//solution (b)
+I_s1=30;
+I_r=ratio*I_s1;
+r=sqrt(((E2/I_r)^2)-(X2^2));
+r_ext=r-r2;
+z2=sqrt((r_ext^2)+(X2^2));
+T_s2=(3*E2^2*r)/(w*z2^2);
+disp(sprintf("(b) The external resistance is %.2f Ω and torque is %.2f N-m",r_ext,T_s2));
+
+//There answers are different due to precision of floating point numbers
+
+//END