summaryrefslogtreecommitdiff
path: root/1938/CH2/EX2.6/2_6.sce
diff options
context:
space:
mode:
Diffstat (limited to '1938/CH2/EX2.6/2_6.sce')
-rwxr-xr-x1938/CH2/EX2.6/2_6.sce11
1 files changed, 11 insertions, 0 deletions
diff --git a/1938/CH2/EX2.6/2_6.sce b/1938/CH2/EX2.6/2_6.sce
new file mode 100755
index 000000000..d6aa75283
--- /dev/null
+++ b/1938/CH2/EX2.6/2_6.sce
@@ -0,0 +1,11 @@
+clc,clear
+printf('Example 2.6\n\n')
+
+V=250
+I_L =20 //load current
+R_a=0.3, R_sh=200 //Armature and shunt field winding
+I_sh=V/R_sh //shunt current
+I_a=I_L-I_sh //armature current
+E_b= V - I_a*R_a //emf generated
+printf('Armature current is %.2f A\n',I_a)
+printf('Back e.m.f is %.3f V',E_b)