diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /1938/CH2/EX2.10 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '1938/CH2/EX2.10')
-rwxr-xr-x | 1938/CH2/EX2.10/2_10.jpg | bin | 0 -> 102264 bytes | |||
-rwxr-xr-x | 1938/CH2/EX2.10/2_10.sce | 19 |
2 files changed, 19 insertions, 0 deletions
diff --git a/1938/CH2/EX2.10/2_10.jpg b/1938/CH2/EX2.10/2_10.jpg Binary files differnew file mode 100755 index 000000000..5f6e71e32 --- /dev/null +++ b/1938/CH2/EX2.10/2_10.jpg diff --git a/1938/CH2/EX2.10/2_10.sce b/1938/CH2/EX2.10/2_10.sce new file mode 100755 index 000000000..f1135f623 --- /dev/null +++ b/1938/CH2/EX2.10/2_10.sce @@ -0,0 +1,19 @@ +clc,clear
+printf('Example 2.10\n\n')
+
+V=250
+R_a=0.15, R_se=0.1, R_x=0.1 //Resitance of armature , series field winding and extra resistance
+N_1 = 800 //initial speed before load torque is increased
+I_1= 30 , I_a1=I_1 , I_se1 = I_1 //initial currents
+
+T_2_by_T_1 = 1 + (50/100) //50 percent increase as mentioned in question
+I_se2_by_I_a2 = R_x/(R_x + R_se) //from the figure
+
+//T (prop.) phi*I_a (prop.) I_sh*I_a and T_1=T_2 and simplifying ,solving further
+I_a2=sqrt(I_a1*I_se1*T_2_by_T_1/I_se2_by_I_a2) //new armature current
+I_se2 = I_se2_by_I_a2 *I_a2 //new series field current
+
+E_b1 = V - I_a1*R_a - I_se1*R_se //indiced emf initially
+E_b2 = V - I_a2*R_a - I_se2*R_se //new induced emf
+N_2 = N_1 * (E_b2/E_b1) * (I_se1/I_se2) //required speed
+printf('The required running speed of motor is %.3f r.p.m',N_2)
|