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 /833/CH3/EX3.1/Ex3_1.sce | |
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 '833/CH3/EX3.1/Ex3_1.sce')
-rwxr-xr-x | 833/CH3/EX3.1/Ex3_1.sce | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/833/CH3/EX3.1/Ex3_1.sce b/833/CH3/EX3.1/Ex3_1.sce new file mode 100755 index 000000000..05939ea3c --- /dev/null +++ b/833/CH3/EX3.1/Ex3_1.sce @@ -0,0 +1,22 @@ +//Caption: Find Secondary line voltage,Line Current,and output power for (a)delta/delta (b)star/star (c)delta/star (d)star/delta
+//Exa:3.1
+clc;
+clear;
+close;
+V=6600//Supplied voltage(in volts)
+I=20//Supplied current(in A)
+n=15//Number of turns per phase
+V_la=V/n
+I_la=n*I
+disp(V_la,I_la,'(a)(in A),(in volts)=')
+V_lb=V/n
+I_lb=I*n
+disp(V_lb,I_lb,'(b)(in A),(in volts)=')
+V_lc=(V*(3^0.5))/(n)
+I_lc=(n*I)/(3^0.5)
+disp(V_lc,I_lc,'(c)(in A),(in volts)=')
+V_ld=V/(n*(3^0.5))
+I_ld=(3^0.5)*I*n
+disp(V_ld,I_ld,'(d)(in A),(in volts)=')
+P=(3^0.5)*V*I/1000
+disp(P,'(d)Output Power (in KVA)=')
\ No newline at end of file |