summaryrefslogtreecommitdiff
path: root/2384/CH10/EX10.13/ex10_13.sce
diff options
context:
space:
mode:
Diffstat (limited to '2384/CH10/EX10.13/ex10_13.sce')
-rwxr-xr-x2384/CH10/EX10.13/ex10_13.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/2384/CH10/EX10.13/ex10_13.sce b/2384/CH10/EX10.13/ex10_13.sce
new file mode 100755
index 000000000..e750effb6
--- /dev/null
+++ b/2384/CH10/EX10.13/ex10_13.sce
@@ -0,0 +1,18 @@
+// Exa 10.13
+clc;
+clear;
+close;
+format('v',6)
+// Given data
+V = 230;// in V
+Ra = 0.115;// in ohm
+Rsh = 115;// in ohm
+I_L = 100;// inA
+Ish =V/Rsh;// in A
+Ia = I_L + Ish;// in A
+Eg = V + (Ia*Ra);// in V
+Ia = I_L-Ish;// in A
+Eb = V - (Ia*Ra);// in V
+// The ratio of speed as a generator to speed as a motor
+NgBYNm = Eg/Eb;
+disp(NgBYNm,"The ratio of speed as a generator to speed as a motor is");