diff options
Diffstat (limited to '1938/CH2/EX2.1/2_1.sce')
-rwxr-xr-x | 1938/CH2/EX2.1/2_1.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1938/CH2/EX2.1/2_1.sce b/1938/CH2/EX2.1/2_1.sce new file mode 100755 index 000000000..5a755ccce --- /dev/null +++ b/1938/CH2/EX2.1/2_1.sce @@ -0,0 +1,9 @@ +clc,clear
+printf('Example 2.1\n\n')
+
+V=220
+I_a=30 //armature currnet
+R_a=0.75 //Armature resistance
+
+E_b=V - I_a*R_a // Since V= E_b+ I_a*R_a
+printf('Induced EMF or back EMF in the motor is %.1f V',E_b)
|