diff options
Diffstat (limited to '1376/CH16/EX16.2/16_2.sci')
-rwxr-xr-x | 1376/CH16/EX16.2/16_2.sci | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/1376/CH16/EX16.2/16_2.sci b/1376/CH16/EX16.2/16_2.sci index 07a38fba1..efd25f95a 100755 --- a/1376/CH16/EX16.2/16_2.sci +++ b/1376/CH16/EX16.2/16_2.sci @@ -1,19 +1,19 @@ -//16.2
-clc;
-disp('For star connection')
-Zph=(12^2+5^2)^0.5;
-Eph=440/(3^0.5);
-Iph=Eph/Zph;
-Il=Iph;
-printf("\nLine current=%.2f A",I1)
-P_total=(3^0.5)*440*Il*12/(Zph*1000);
-printf("\nTotal Power=%.2f kW",P_total)
-
-disp('For Delta connection')
-Zph=(12^2+5^2)^0.5;
-Eph=440;
-Iph=Eph/Zph;
-Il=Iph*(3^0.5);
-printf("\nLine current=%.2f A",I1)
-P_total=(3^0.5)*440*Il*12/(Zph*1000);
+//16.2 +clc; +disp('For star connection') +Zph=(12^2+5^2)^0.5; +Eph=440/(3^0.5); +Iph=Eph/Zph; +Il=Iph; +printf("\nLine current=%.2f A",Il) +P_total=(3^0.5)*440*Il*12/(Zph*1000); +printf("\nTotal Power=%.2f kW",P_total) + +disp('For Delta connection') +Zph=(12^2+5^2)^0.5; +Eph=440; +Iph=Eph/Zph; +Il=Iph*(3^0.5); +printf("\nLine current=%.2f A",Il) +P_total=(3^0.5)*440*Il*12/(Zph*1000); printf("\nTotal Power=%.2f kW",P_total)
\ No newline at end of file |