summaryrefslogtreecommitdiff
path: root/1370/CH2/EX2.11/example2_11.sce
diff options
context:
space:
mode:
Diffstat (limited to '1370/CH2/EX2.11/example2_11.sce')
-rwxr-xr-x1370/CH2/EX2.11/example2_11.sce12
1 files changed, 12 insertions, 0 deletions
diff --git a/1370/CH2/EX2.11/example2_11.sce b/1370/CH2/EX2.11/example2_11.sce
new file mode 100755
index 000000000..41f31f750
--- /dev/null
+++ b/1370/CH2/EX2.11/example2_11.sce
@@ -0,0 +1,12 @@
+//example2.11
+clc
+disp("P=4, Z=200, A=2, psi=25*10^-3 Wb")
+disp("(I_a)=(I_L)=60 A, R_a=0.15ohm, R_se=0.2 ohm")
+disp("V=(E_b)+(I_a*R_a)+(I_a*R_se)")
+disp("250=E_b+60(0.15+0.2)")
+b=250-(60*(0.15+0.2))
+disp(b,"E_b(in V)=")
+disp("Now, E_b=(psi*P*N*Z)/(60*A)")
+disp("Therefore, 229=(25*(10^-3)*4*N*200)/(60*2)")
+n=(229*60*2)/(800*25*10^-3)
+disp(n,"Therefore, N(in rpm)=")