blob: 71883a2ce1e10b87bca6e87e716934dbf6295c59 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//16.1
clc;
disp('For star connected load')
Il=50000/((3^0.5)*440*0.85);
printf("\nLine current=%.2f A",I1)
Iph=Il;
printf("\nPhase current=%.2f A",Iph)
disp('For Delta connected load')
Il=50000/((3^0.5)*440*0.85);
printf("\nLine current=%.2f A",I1)
Iph=Il/(3^0.5);
printf("\nPhase current=%.2f A",Iph)
|