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 /695/CH3/EX3.13/Ex3_13.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 '695/CH3/EX3.13/Ex3_13.sce')
-rwxr-xr-x | 695/CH3/EX3.13/Ex3_13.sce | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/695/CH3/EX3.13/Ex3_13.sce b/695/CH3/EX3.13/Ex3_13.sce new file mode 100755 index 000000000..d198ab52b --- /dev/null +++ b/695/CH3/EX3.13/Ex3_13.sce @@ -0,0 +1,24 @@ +//Caption:Determine the KVA rating of auto transformer with additive and subtractive polarity also find the efficiency at full load and unity power factor
+//Exa:3.13
+clc;
+clear;
+close;
+P=120*1000;//in watts
+V1=2400;//in volts
+V2=240;//in volts
+I1=P/V1;//in amperes
+I2=P/V2;//in amperes
+KVA_1=V1*(I1+I2)/1000;
+P_trans=V2*I2/1000;
+P_cond_1=KVA_1-P_trans;
+P_loss_1=((1/0.98)-1)^2*P_trans;
+Eff_a=1-(P_loss_1/KVA_1)
+disp(KVA_1,'KVA Rating of transformer with additive polarity (in KVA)=');
+disp(Eff_a*100,'Efficiency of auto transformer with additive polarity (in %)=');
+KVA_2=V1*(I2-I1)/1000;
+P_trans=V2*I2/1000;
+P_cond_2=KVA_2-P_trans;
+P_loss=((1/0.98)-1)^2*P_trans;
+Eff_s=1-(P_loss/KVA_2)
+disp(KVA_2,'KVA Rating of transformer with subtractive polarity (in KVA)=');
+disp(Eff_s*100,'Efficiency of auto transformer with subtractive polarity (in %)=');
\ No newline at end of file |