diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /503/CH3/EX3.18 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '503/CH3/EX3.18')
-rwxr-xr-x | 503/CH3/EX3.18/ch3_18.sci | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/503/CH3/EX3.18/ch3_18.sci b/503/CH3/EX3.18/ch3_18.sci new file mode 100755 index 000000000..7970ad308 --- /dev/null +++ b/503/CH3/EX3.18/ch3_18.sci @@ -0,0 +1,24 @@ +// To calculate sec. line voltage, line current and output va
+
+clc;
+
+disp('(a)Y/D conn');
+V_LY=6600;
+V_PY=V_LY/sqrt(3);
+a=12;
+V_PD=V_PY/a;
+V_LD=V_PD; disp(V_LD,'sec line voltage(V)');
+
+I_PY=10;
+I_PD=I_PY*a;
+I_LD=I_PD*sqrt(3); disp(I_LD,'sec. line current(A)');
+r=sqrt(3)*V_LD*I_LD; disp(r,'output rating(va)');
+
+disp('(b)D/Y conn');
+I_LD=10;
+I_PD=I_LD/sqrt(3);
+I_LY=I_PD*a; disp(I_LY,'sec. line current(A)');
+V_PD=6600;
+V_PY=V_PD/a;
+V_LY=V_PY*sqrt(3); disp(V_LY,'sec line voltage(V)');
+r=sqrt(3)*V_LY*I_LY; disp(r,'output rating(va)');
\ No newline at end of file |