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 /380/CH4/EX4.4 | |
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 '380/CH4/EX4.4')
-rwxr-xr-x | 380/CH4/EX4.4/4_4.txt | 24 | ||||
-rwxr-xr-x | 380/CH4/EX4.4/4_4_R.txt | 3 | ||||
-rwxr-xr-x | 380/CH4/EX4.4/Ex4_4.sce | 24 |
3 files changed, 51 insertions, 0 deletions
diff --git a/380/CH4/EX4.4/4_4.txt b/380/CH4/EX4.4/4_4.txt new file mode 100755 index 000000000..3d56f5249 --- /dev/null +++ b/380/CH4/EX4.4/4_4.txt @@ -0,0 +1,24 @@ +//Caption:Find the efficiency
+//Exa:4.4
+clc;
+clear;
+close;
+//From Exa:4.3
+V_2=230;//in Volts
+Z_1=4+%i*12;
+I_s=75*(cosd(30)+%i*sind(30));//in Amperes
+a=10;//transformation ratio
+E_1=2282.87*(cosd(2.33)+%i*sind(2.33));//in Volts
+E_2=228.287*(cosd(2.33)+%i*sind(2.33));//in Volts
+I_p=7.5*(cosd(30)+%i*sind(30));//in Amperes
+P_o=14938.94;//in Watts
+R_c1=20000;//core loss resistance on primary side
+X_m1=15000;//magnetizing reactance on primary side
+I_c=E_1/R_c1;//in Amperes
+I_m=E_1/(%i*X_m1);//in Amperes
+I_phy=I_c+I_m;//in Amperes
+I_1=I_p+I_phy;//in Amperes
+V_1=E_1+Z_1*I_1;//in Volts
+P_in=real(V_1*conj(I_1));//in Watts
+Eff=P_o/P_in;
+disp(Eff*100,'Efficiency (%)=')
\ No newline at end of file diff --git a/380/CH4/EX4.4/4_4_R.txt b/380/CH4/EX4.4/4_4_R.txt new file mode 100755 index 000000000..6abe746dd --- /dev/null +++ b/380/CH4/EX4.4/4_4_R.txt @@ -0,0 +1,3 @@ + Efficiency (%)=
+
+ 95.450395
\ No newline at end of file diff --git a/380/CH4/EX4.4/Ex4_4.sce b/380/CH4/EX4.4/Ex4_4.sce new file mode 100755 index 000000000..3d56f5249 --- /dev/null +++ b/380/CH4/EX4.4/Ex4_4.sce @@ -0,0 +1,24 @@ +//Caption:Find the efficiency
+//Exa:4.4
+clc;
+clear;
+close;
+//From Exa:4.3
+V_2=230;//in Volts
+Z_1=4+%i*12;
+I_s=75*(cosd(30)+%i*sind(30));//in Amperes
+a=10;//transformation ratio
+E_1=2282.87*(cosd(2.33)+%i*sind(2.33));//in Volts
+E_2=228.287*(cosd(2.33)+%i*sind(2.33));//in Volts
+I_p=7.5*(cosd(30)+%i*sind(30));//in Amperes
+P_o=14938.94;//in Watts
+R_c1=20000;//core loss resistance on primary side
+X_m1=15000;//magnetizing reactance on primary side
+I_c=E_1/R_c1;//in Amperes
+I_m=E_1/(%i*X_m1);//in Amperes
+I_phy=I_c+I_m;//in Amperes
+I_1=I_p+I_phy;//in Amperes
+V_1=E_1+Z_1*I_1;//in Volts
+P_in=real(V_1*conj(I_1));//in Watts
+Eff=P_o/P_in;
+disp(Eff*100,'Efficiency (%)=')
\ No newline at end of file |