diff options
Diffstat (limited to '2384/CH10/EX10.10')
-rwxr-xr-x | 2384/CH10/EX10.10/ex10_10.sce | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/2384/CH10/EX10.10/ex10_10.sce b/2384/CH10/EX10.10/ex10_10.sce new file mode 100755 index 000000000..32fcebb8c --- /dev/null +++ b/2384/CH10/EX10.10/ex10_10.sce @@ -0,0 +1,16 @@ +// Exa 10.10
+clc;
+clear;
+close;
+format('v',7)
+// Given data
+V = 250;// in V
+I_L = 20;// in A
+Ra = 0.3;// in ohm
+Rsh = 200;// in ohm
+Ish = V/Rsh;// in A
+// I_L = Ia+Ish;
+Ia = I_L-Ish;// inA
+disp(Ia,"The armature current in A is");
+Eb = V-(Ia*Ra);// in V
+disp(Eb,"The back emf in V is");
|