summaryrefslogtreecommitdiff
path: root/3802/CH10/EX10.12/Ex10_12.sce
diff options
context:
space:
mode:
Diffstat (limited to '3802/CH10/EX10.12/Ex10_12.sce')
-rw-r--r--3802/CH10/EX10.12/Ex10_12.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3802/CH10/EX10.12/Ex10_12.sce b/3802/CH10/EX10.12/Ex10_12.sce
new file mode 100644
index 000000000..fd13ff34c
--- /dev/null
+++ b/3802/CH10/EX10.12/Ex10_12.sce
@@ -0,0 +1,20 @@
+//Book Name:Fundamentals of Electrical Engineering
+//Author:Rajendra Prasad
+//Publisher: PHI Learning Private Limited
+//Edition:Third ,2014
+
+//Ex10_12.sce
+
+clc;
+clear;
+p=4;
+f=50;
+R2=0.25;
+N1=1425;
+N2=1275;
+
+Ns=(120*f)/p;
+s1=(Ns-N1)/Ns;
+s2=(Ns-N2)/Ns;
+R=(R2*(s2/s1))-R2;
+printf("\n External resistance per phase=%1.1f ohm per phase",R)