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.3 | |
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.3')
-rwxr-xr-x | 833/CH3/EX3.3/Ex3_3.sce | 19 | ||||
-rwxr-xr-x | 833/CH3/EX3.3/Ex3_3.txt | 19 | ||||
-rwxr-xr-x | 833/CH3/EX3.3/Result3_3.txt | 12 |
3 files changed, 50 insertions, 0 deletions
diff --git a/833/CH3/EX3.3/Ex3_3.sce b/833/CH3/EX3.3/Ex3_3.sce new file mode 100755 index 000000000..b5e86d406 --- /dev/null +++ b/833/CH3/EX3.3/Ex3_3.sce @@ -0,0 +1,19 @@ +//Caption: Find possible voltage ratio and output for connections (a)BC=11500V,AC=2300V (b)BC=2300V,AC=11500V
+//Exa:3.3
+clc;
+clear;
+close;
+V_1=11500//Voltage on primary side(in volts)
+V_2=2300//Voltage on secondary side(in volts)
+P_o=100000//Rated output(in VA)
+V=V_1+V_2
+v=V/V_1
+I_1=P_o/V_1
+I_2=P_o/V_2
+I=I_1+I_2
+W_o=(V_1*I)/1000
+Cu=1-(V_1/V)//(a)Ratio of weight of copper
+disp(W_o,v,'(a)Voltage ratio and output(in KVA)=')
+w_o=(V_2*I)/(1000)
+cu=1-(V_2/v)//(b)Ratio of weight of copper
+disp(w_o,v,'(b)Voltage ratio and output(in KVA)=')
\ No newline at end of file diff --git a/833/CH3/EX3.3/Ex3_3.txt b/833/CH3/EX3.3/Ex3_3.txt new file mode 100755 index 000000000..b5e86d406 --- /dev/null +++ b/833/CH3/EX3.3/Ex3_3.txt @@ -0,0 +1,19 @@ +//Caption: Find possible voltage ratio and output for connections (a)BC=11500V,AC=2300V (b)BC=2300V,AC=11500V
+//Exa:3.3
+clc;
+clear;
+close;
+V_1=11500//Voltage on primary side(in volts)
+V_2=2300//Voltage on secondary side(in volts)
+P_o=100000//Rated output(in VA)
+V=V_1+V_2
+v=V/V_1
+I_1=P_o/V_1
+I_2=P_o/V_2
+I=I_1+I_2
+W_o=(V_1*I)/1000
+Cu=1-(V_1/V)//(a)Ratio of weight of copper
+disp(W_o,v,'(a)Voltage ratio and output(in KVA)=')
+w_o=(V_2*I)/(1000)
+cu=1-(V_2/v)//(b)Ratio of weight of copper
+disp(w_o,v,'(b)Voltage ratio and output(in KVA)=')
\ No newline at end of file diff --git a/833/CH3/EX3.3/Result3_3.txt b/833/CH3/EX3.3/Result3_3.txt new file mode 100755 index 000000000..59e3a0561 --- /dev/null +++ b/833/CH3/EX3.3/Result3_3.txt @@ -0,0 +1,12 @@ +(a)Voltage ratio and output(in KVA)=
+
+ 1.2
+
+ 600.
+
+ (b)Voltage ratio and output(in KVA)=
+
+ 1.2
+
+ 120.
+
\ No newline at end of file |