summaryrefslogtreecommitdiff
path: root/3745/CH1/EX1.33/Ex1_33.sce
diff options
context:
space:
mode:
Diffstat (limited to '3745/CH1/EX1.33/Ex1_33.sce')
-rw-r--r--3745/CH1/EX1.33/Ex1_33.sce20
1 files changed, 20 insertions, 0 deletions
diff --git a/3745/CH1/EX1.33/Ex1_33.sce b/3745/CH1/EX1.33/Ex1_33.sce
new file mode 100644
index 000000000..ca4de8052
--- /dev/null
+++ b/3745/CH1/EX1.33/Ex1_33.sce
@@ -0,0 +1,20 @@
+// Ex 33 Page 376
+
+clc;clear;close;
+// Given
+V=500;//V
+Pp=1500*10**3;//W (+ve side)
+Pn=2000*10**3;//W (-ve side)
+
+P=Pp+Pn;//W
+I=P/V;//A
+Ip=Pp/(V/2);//A
+In=Pn/(V/2);//A
+Iob=In-Ip;//A
+Ia=Iob/2;//A
+printf("Current supplied by the main generator = %.f A",I)
+printf("\n Current supplied on +ve side = %.f A",Ip)
+printf("\n Current supplied on -ve side = %.f A",In)
+printf("\n out-off balance Current = %.f A",Iob)
+printf("\n Current in each armature = %.f A",Ia)
+