diff options
Diffstat (limited to '1938/CH2/EX2.36/2_36.sce')
-rwxr-xr-x | 1938/CH2/EX2.36/2_36.sce | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/1938/CH2/EX2.36/2_36.sce b/1938/CH2/EX2.36/2_36.sce new file mode 100755 index 000000000..022ccaa72 --- /dev/null +++ b/1938/CH2/EX2.36/2_36.sce @@ -0,0 +1,19 @@ +clc,clear
+printf('Example 2.36\n\n')
+
+N_1=1000
+I_1=50,I_a1=I_1
+V=250
+R_x=4.4, R_t=0.6 //R_t = R_a+R_se
+E_b1=V - I_a1*(R_t)
+
+//T (prop.)I_a^2 , T (prop.) N^2 .... hence N (prop.) I_a
+//N (prop.) E_b /I_a
+//combining both , E_b (prop.) I_a^2
+//using E_b2 = V - I_a2*(R_a + R_se + R_x) and solving for I_a2 , we get 0.088 I_a2^2 +5 I_a2 -250=0
+p=[0.088 5 -250]
+roots(p)
+I_a2=ans(2) //root(1) is ignored as it is -ve
+E_b2 = V - I_a2*(R_t + R_x)
+N_2=N_1*(E_b2/E_b1)*(I_a1/I_a2)
+printf('Motor speed = %.2f r.p.m',N_2)
|