diff options
Diffstat (limited to '1376/CH16/EX16.11')
-rwxr-xr-x | 1376/CH16/EX16.11/16_11.sci | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/1376/CH16/EX16.11/16_11.sci b/1376/CH16/EX16.11/16_11.sci new file mode 100755 index 000000000..7271c8624 --- /dev/null +++ b/1376/CH16/EX16.11/16_11.sci @@ -0,0 +1,13 @@ +//16.11
+clc;
+VL=1100;
+IL=100;
+pf=150*1000/(3^0.5*VL*IL);
+E_per_phase=VL/3^0.5;
+Zph=E_per_phase/100;
+Rph=pf*Zph;
+Xc=(Zph^2-Rph^2)^0.5;
+C=10^6/(2*%pi*50*Xc);
+disp('Circuit Constants are')
+printf("\nR=%.2f ohm",Rph)
+printf("\nC=%.2f uF",C)
\ No newline at end of file |