diff options
Diffstat (limited to '1853/CH5/EX5.10/Ex5_10.sce')
-rwxr-xr-x | 1853/CH5/EX5.10/Ex5_10.sce | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1853/CH5/EX5.10/Ex5_10.sce b/1853/CH5/EX5.10/Ex5_10.sce new file mode 100755 index 000000000..70ed0be13 --- /dev/null +++ b/1853/CH5/EX5.10/Ex5_10.sce @@ -0,0 +1,13 @@ +
+//dtermine its speed when its take crnt 25 amps
+Vl=250
+Ra=0.05
+R=0.02
+Ia=30
+I1=30 //Il=Ia
+N1=400
+E1=Vl-(Ia*Ra)-(Ia*R)
+//E1=E2
+I2=25
+N2=(N1*E1*I1)/(E1*I2)
+disp('speed of motor='+string(N2)+'rpm')
|