diff options
Diffstat (limited to '1376')
-rwxr-xr-x | 1376/CH16/EX16.1/16_1.sci | 22 | ||||
-rwxr-xr-x | 1376/CH16/EX16.2/16_2.sci | 36 |
2 files changed, 29 insertions, 29 deletions
diff --git a/1376/CH16/EX16.1/16_1.sci b/1376/CH16/EX16.1/16_1.sci index 71883a2ce..55c91fb8d 100755 --- a/1376/CH16/EX16.1/16_1.sci +++ b/1376/CH16/EX16.1/16_1.sci @@ -1,12 +1,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);
+//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)
\ No newline at end of file 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 |