diff options
Diffstat (limited to '2384/CH10/EX10.12')
-rwxr-xr-x | 2384/CH10/EX10.12/ex10_12.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2384/CH10/EX10.12/ex10_12.sce b/2384/CH10/EX10.12/ex10_12.sce new file mode 100755 index 000000000..bd302c8ee --- /dev/null +++ b/2384/CH10/EX10.12/ex10_12.sce @@ -0,0 +1,17 @@ +// Exa 10.12
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+Eb = 227;// in V
+Rsh = 160;// in ohm
+Ish = 1.5;// in A
+I_L = 39.5;// in A
+V = Ish*Rsh;// in V
+Ia = I_L-Ish;// in A
+//V = Eb + (Ia*Ra);
+Ra = (V-Eb)/Ia;// in ohm
+disp(Ra,"The armature resistance in ohm is");
+Ia = V/Ra;// in A
+disp(Ia,"The armature current in A is");
|