summaryrefslogtreecommitdiff
path: root/3745/CH1/EX1.33/Ex1_33.sce
blob: ca4de805261dd66dd8dca84210ba6ac475cd0316 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)