blob: 55c91fb8d177cefa2d89990bee1bad9a975d70c3 (
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",Il)
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",Il)
Iph=Il/(3^0.5);
printf("\nPhase current=%.2f A",Iph)
|