From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 833/CH1/EX1.1/Ex1_1.sce | 18 ++++++++++++++++++ 833/CH1/EX1.1/Ex1_1.txt | 18 ++++++++++++++++++ 833/CH1/EX1.1/Result1_1.txt | 16 ++++++++++++++++ 833/CH1/EX1.2/Ex1_2.sce | 21 +++++++++++++++++++++ 833/CH1/EX1.2/Ex1_2.txt | 21 +++++++++++++++++++++ 833/CH1/EX1.2/Result1_2.txt | 19 +++++++++++++++++++ 833/CH1/EX1.3/Ex1_3.sce | 16 ++++++++++++++++ 833/CH1/EX1.3/Ex1_3.txt | 16 ++++++++++++++++ 833/CH1/EX1.3/Result1_3.txt | 7 +++++++ 833/CH1/EX1.4/Ex1_4.sce | 29 +++++++++++++++++++++++++++++ 833/CH1/EX1.4/Ex1_4.txt | 29 +++++++++++++++++++++++++++++ 833/CH1/EX1.4/Result1_4.txt | 31 +++++++++++++++++++++++++++++++ 833/CH1/EX1.5/Ex1_5.sce | 29 +++++++++++++++++++++++++++++ 833/CH1/EX1.5/Ex1_5.txt | 29 +++++++++++++++++++++++++++++ 833/CH1/EX1.5/Result1_5.txt | 11 +++++++++++ 833/CH1/EX1.6/Ex1_6.sce | 19 +++++++++++++++++++ 833/CH1/EX1.6/Ex1_6.txt | 19 +++++++++++++++++++ 833/CH1/EX1.6/Result1_6.txt | 12 ++++++++++++ 18 files changed, 360 insertions(+) create mode 100755 833/CH1/EX1.1/Ex1_1.sce create mode 100755 833/CH1/EX1.1/Ex1_1.txt create mode 100755 833/CH1/EX1.1/Result1_1.txt create mode 100755 833/CH1/EX1.2/Ex1_2.sce create mode 100755 833/CH1/EX1.2/Ex1_2.txt create mode 100755 833/CH1/EX1.2/Result1_2.txt create mode 100755 833/CH1/EX1.3/Ex1_3.sce create mode 100755 833/CH1/EX1.3/Ex1_3.txt create mode 100755 833/CH1/EX1.3/Result1_3.txt create mode 100755 833/CH1/EX1.4/Ex1_4.sce create mode 100755 833/CH1/EX1.4/Ex1_4.txt create mode 100755 833/CH1/EX1.4/Result1_4.txt create mode 100755 833/CH1/EX1.5/Ex1_5.sce create mode 100755 833/CH1/EX1.5/Ex1_5.txt create mode 100755 833/CH1/EX1.5/Result1_5.txt create mode 100755 833/CH1/EX1.6/Ex1_6.sce create mode 100755 833/CH1/EX1.6/Ex1_6.txt create mode 100755 833/CH1/EX1.6/Result1_6.txt (limited to '833/CH1') diff --git a/833/CH1/EX1.1/Ex1_1.sce b/833/CH1/EX1.1/Ex1_1.sce new file mode 100755 index 000000000..017d08c7f --- /dev/null +++ b/833/CH1/EX1.1/Ex1_1.sce @@ -0,0 +1,18 @@ +//Caption:Find the (a) n ratio (b) load current referred to high voltage side (c) load impedance on low voltage side for full load (d) and impedance referred to high voltage side +//Exa:1.1 +clc; +clear; +close; +P_s=25000//Supplied power (in VA) +V_1=1910//Voltage on primary side (in volt) +V_2=240//Voltage on secondary side (in volt) +f=50//frequency in hertz +n=V_1/V_2 +disp(n,'(a)n-ratio=') +I_1=P_s/V_1 +disp(I_1,'(b)load current referred to high voltage side (in A)=') +I_2=P_s/V_2 +Z_2=V_2/I_2 +disp(Z_2,'(c)load impedance on low voltage side for full load (in ohm)=') +Z_1=Z_2*(n^2) +disp(Z_1,'(d)impedance referred to high voltage side(in ohm)=') \ No newline at end of file diff --git a/833/CH1/EX1.1/Ex1_1.txt b/833/CH1/EX1.1/Ex1_1.txt new file mode 100755 index 000000000..017d08c7f --- /dev/null +++ b/833/CH1/EX1.1/Ex1_1.txt @@ -0,0 +1,18 @@ +//Caption:Find the (a) n ratio (b) load current referred to high voltage side (c) load impedance on low voltage side for full load (d) and impedance referred to high voltage side +//Exa:1.1 +clc; +clear; +close; +P_s=25000//Supplied power (in VA) +V_1=1910//Voltage on primary side (in volt) +V_2=240//Voltage on secondary side (in volt) +f=50//frequency in hertz +n=V_1/V_2 +disp(n,'(a)n-ratio=') +I_1=P_s/V_1 +disp(I_1,'(b)load current referred to high voltage side (in A)=') +I_2=P_s/V_2 +Z_2=V_2/I_2 +disp(Z_2,'(c)load impedance on low voltage side for full load (in ohm)=') +Z_1=Z_2*(n^2) +disp(Z_1,'(d)impedance referred to high voltage side(in ohm)=') \ No newline at end of file diff --git a/833/CH1/EX1.1/Result1_1.txt b/833/CH1/EX1.1/Result1_1.txt new file mode 100755 index 000000000..b47ccf131 --- /dev/null +++ b/833/CH1/EX1.1/Result1_1.txt @@ -0,0 +1,16 @@ +(a)n-ratio= + + 7.9583333 + + (b)load current referred to high voltage side (in A)= + + 13.089005 + + (c)load impedance on low voltage side for full load (in ohm)= + + 2.304 + + (d)impedance referred to high voltage side(in ohm)= + + 145.924 + \ No newline at end of file diff --git a/833/CH1/EX1.2/Ex1_2.sce b/833/CH1/EX1.2/Ex1_2.sce new file mode 100755 index 000000000..d1caca177 --- /dev/null +++ b/833/CH1/EX1.2/Ex1_2.sce @@ -0,0 +1,21 @@ +//Caption:Find (a) Power factor on no load (b) active current (c) magnetising current (d) copper loss in the primary winding (e) core loss +//Exa:1.2 +clc; +clear; +close; +V_1=3300//Primary voltage (in volt) +V_2=240//Secondary voltage (in volt) +I_0=2//No load current (in A) +P=60//Power (in watt) +R=0.8//Resistance of the low voltage winding (in ohm) +Pf=P/(V_2*I_0) +disp(Pf,'(a)Power factor on no load=') +I_c=I_0*Pf +disp(I_c,'(b)Active current(in A)=') +theta=(acosd(Pf)) +I_m=I_0*sin(theta) +disp(I_m,'(c)magnetising current is(in A)=') +Culoss=(I_0^2)*R +disp(Culoss,'(d)copper loss in the primary winding is(in watt)=') +Coreloss=P-Culoss +disp(Coreloss,'(e)core loss(in watt)=') \ No newline at end of file diff --git a/833/CH1/EX1.2/Ex1_2.txt b/833/CH1/EX1.2/Ex1_2.txt new file mode 100755 index 000000000..d1caca177 --- /dev/null +++ b/833/CH1/EX1.2/Ex1_2.txt @@ -0,0 +1,21 @@ +//Caption:Find (a) Power factor on no load (b) active current (c) magnetising current (d) copper loss in the primary winding (e) core loss +//Exa:1.2 +clc; +clear; +close; +V_1=3300//Primary voltage (in volt) +V_2=240//Secondary voltage (in volt) +I_0=2//No load current (in A) +P=60//Power (in watt) +R=0.8//Resistance of the low voltage winding (in ohm) +Pf=P/(V_2*I_0) +disp(Pf,'(a)Power factor on no load=') +I_c=I_0*Pf +disp(I_c,'(b)Active current(in A)=') +theta=(acosd(Pf)) +I_m=I_0*sin(theta) +disp(I_m,'(c)magnetising current is(in A)=') +Culoss=(I_0^2)*R +disp(Culoss,'(d)copper loss in the primary winding is(in watt)=') +Coreloss=P-Culoss +disp(Coreloss,'(e)core loss(in watt)=') \ No newline at end of file diff --git a/833/CH1/EX1.2/Result1_2.txt b/833/CH1/EX1.2/Result1_2.txt new file mode 100755 index 000000000..8d0a0a9cf --- /dev/null +++ b/833/CH1/EX1.2/Result1_2.txt @@ -0,0 +1,19 @@ +(a)Power factor on no load= + + 0.125 + + (b)Active current(in A)= + + 0.25 + + (c)magnetising current is(in A)= + + 1.8154547 + + (d)copper loss in the primary winding is(in watt)= + + 3.2 + + (e)core loss(in watt)= + + 56.8 \ No newline at end of file diff --git a/833/CH1/EX1.3/Ex1_3.sce b/833/CH1/EX1.3/Ex1_3.sce new file mode 100755 index 000000000..8b7bc14cf --- /dev/null +++ b/833/CH1/EX1.3/Ex1_3.sce @@ -0,0 +1,16 @@ +//Caption:Find number of turns per limb on the (a) high voltage and (b) low voltage sides +//Exa:1.3 +clc; +clear; +close; +A=0.0386//cross sectional area of core(in m^2) +B=1//maximum flux density (in weber/m^2) +f=50//frequency (in hertz) +V_1=3300//voltage on primary side (in volt) +V_2=240//voltage on secondary side (in volt) +C=B*A +n_2=V_2/(4.44*C*f) +T_2=n_2/2 +disp(T_2,'(a)number of turns on low voltage side is=') +T_1=T_2*V_1/V_2 +disp(T_1,'(b)number of turns on high voltage side is=') \ No newline at end of file diff --git a/833/CH1/EX1.3/Ex1_3.txt b/833/CH1/EX1.3/Ex1_3.txt new file mode 100755 index 000000000..8b7bc14cf --- /dev/null +++ b/833/CH1/EX1.3/Ex1_3.txt @@ -0,0 +1,16 @@ +//Caption:Find number of turns per limb on the (a) high voltage and (b) low voltage sides +//Exa:1.3 +clc; +clear; +close; +A=0.0386//cross sectional area of core(in m^2) +B=1//maximum flux density (in weber/m^2) +f=50//frequency (in hertz) +V_1=3300//voltage on primary side (in volt) +V_2=240//voltage on secondary side (in volt) +C=B*A +n_2=V_2/(4.44*C*f) +T_2=n_2/2 +disp(T_2,'(a)number of turns on low voltage side is=') +T_1=T_2*V_1/V_2 +disp(T_1,'(b)number of turns on high voltage side is=') \ No newline at end of file diff --git a/833/CH1/EX1.3/Result1_3.txt b/833/CH1/EX1.3/Result1_3.txt new file mode 100755 index 000000000..b8585dae8 --- /dev/null +++ b/833/CH1/EX1.3/Result1_3.txt @@ -0,0 +1,7 @@ +(a)number of turns on low voltage side is= + + 14.003641 + + (b)number of turns on high voltage side is= + + 192.55006 \ No newline at end of file diff --git a/833/CH1/EX1.4/Ex1_4.sce b/833/CH1/EX1.4/Ex1_4.sce new file mode 100755 index 000000000..e8906cd39 --- /dev/null +++ b/833/CH1/EX1.4/Ex1_4.sce @@ -0,0 +1,29 @@ +//Caption:Calculate (a) equivalent resistance and reactance of low voltage side in terms of high voltage side (b) equivalent resistance and reactance of high voltage side in terms of low voltage side (c) total resistance and reactance of transformer in terms of high voltage side (d) total resistance and reactance of transformer in terms of low voltage side +//Exa:1.4 +clc; +clear; +close; +V_1=2200//Primary side voltage(in volt) +V_2=220//secondary side voltage(in volt) +f=50//frequency(in hertz) +r_1=1.25//Primary side resistance(in ohm) +x_1=4//Primary side reactance(in ohm) +r_2=0.04//Secondary side resistance(in ohm) +x_2=0.15//Secondary side reactance(in ohm) +n=V_1/V_2 +R_2=(n^2)*r_2 +disp(R_2,'(a)equivalent resistance of low voltage side in terms of high voltage side=') +X_2=(n^2)*x_2 +disp(X_2,'equivalent reactance of low voltage side in terms of high voltage side=') +R_1=r_1/(n^2) +disp(R_1,'(b)equivalent resistance of high voltage side in terms of low voltage side =') +X_1=x_1/(n^2) +disp(X_1,'equivalent reactance of high voltage side in terms of low voltage side =') +R_t=r_1+R_2 +disp(R_t,'(c)total resistance of transformer in terms of high voltage side=') +X_t=x_1+X_2 +disp(X_t,'total reactance of transformer in terms of high voltage side=') +R_e=r_2+R_1 +disp(R_e,'(d)total resistance of transformer in terms of low voltage side=') +X_e=x_2+X_1 +disp(X_e,'total reactance of transformer in terms of low voltage side=') \ No newline at end of file diff --git a/833/CH1/EX1.4/Ex1_4.txt b/833/CH1/EX1.4/Ex1_4.txt new file mode 100755 index 000000000..e8906cd39 --- /dev/null +++ b/833/CH1/EX1.4/Ex1_4.txt @@ -0,0 +1,29 @@ +//Caption:Calculate (a) equivalent resistance and reactance of low voltage side in terms of high voltage side (b) equivalent resistance and reactance of high voltage side in terms of low voltage side (c) total resistance and reactance of transformer in terms of high voltage side (d) total resistance and reactance of transformer in terms of low voltage side +//Exa:1.4 +clc; +clear; +close; +V_1=2200//Primary side voltage(in volt) +V_2=220//secondary side voltage(in volt) +f=50//frequency(in hertz) +r_1=1.25//Primary side resistance(in ohm) +x_1=4//Primary side reactance(in ohm) +r_2=0.04//Secondary side resistance(in ohm) +x_2=0.15//Secondary side reactance(in ohm) +n=V_1/V_2 +R_2=(n^2)*r_2 +disp(R_2,'(a)equivalent resistance of low voltage side in terms of high voltage side=') +X_2=(n^2)*x_2 +disp(X_2,'equivalent reactance of low voltage side in terms of high voltage side=') +R_1=r_1/(n^2) +disp(R_1,'(b)equivalent resistance of high voltage side in terms of low voltage side =') +X_1=x_1/(n^2) +disp(X_1,'equivalent reactance of high voltage side in terms of low voltage side =') +R_t=r_1+R_2 +disp(R_t,'(c)total resistance of transformer in terms of high voltage side=') +X_t=x_1+X_2 +disp(X_t,'total reactance of transformer in terms of high voltage side=') +R_e=r_2+R_1 +disp(R_e,'(d)total resistance of transformer in terms of low voltage side=') +X_e=x_2+X_1 +disp(X_e,'total reactance of transformer in terms of low voltage side=') \ No newline at end of file diff --git a/833/CH1/EX1.4/Result1_4.txt b/833/CH1/EX1.4/Result1_4.txt new file mode 100755 index 000000000..5af7327b5 --- /dev/null +++ b/833/CH1/EX1.4/Result1_4.txt @@ -0,0 +1,31 @@ +(a)equivalent resistance of low voltage side in terms of high voltage side= + + 4. + + equivalent reactance of low voltage side in terms of high voltage side= + + 15. + + (b)equivalent resistance of high voltage side in terms of low voltage side = + + 0.0125 + + equivalent reactance of high voltage side in terms of low voltage side = + + 0.04 + + (c)total resistance of transformer in terms of high voltage side= + + 5.25 + + total reactance of transformer in terms of high voltage side= + + 19. + + (d)total resistance of transformer in terms of low voltage side= + + 0.0525 + + total reactance of transformer in terms of low voltage side= + + 0.19 \ No newline at end of file diff --git a/833/CH1/EX1.5/Ex1_5.sce b/833/CH1/EX1.5/Ex1_5.sce new file mode 100755 index 000000000..86175f762 --- /dev/null +++ b/833/CH1/EX1.5/Ex1_5.sce @@ -0,0 +1,29 @@ +//Caption: (a) terminal voltage on load (b) voltage on load at high voltage terminals (c) efficiency of transformer +//Exa:1.5 +clc; +clear; +close; +n=10//ratio of high voltage to low voltage +V_1=200//Voltage on low voltage side(in volt) +x_m=231//Magnetising resistance(in ohms) +r_c=400//Core loss resistance(in ohms) +r_e=0.1//Equivalent resistance referred to low voltage side(in ohms) +x_e=0.5//Equivalent reactance referred to low voltage side(in ohms) +r_l=7.9//Load resistance(in ohms) +x_l=5.5//Load reactance(in ohms) +I_m=V_1/x_m +I_c=V_1/r_c +I_0=I_c+(%i*I_m) +R_l=r_l+r_e +X_l=x_l+x_e +I=V_1/(R_l+(%i*X_l)) +I_1=I+I_0 +V_2=V_1-I*(r_e+(%i*x_e)) +v=sqrt(V_2*conj(V_2)) +disp(v,'(a)terminal voltage on load(in volt)=') +V=v*n +disp(V,'(b)voltage on load at hgih voltage terminals(in volt)=') +P_o=v*real(I) +P_i=V_1*real(I_1) +eff=(P_o/P_i)*100 +disp(eff,'(c)efficiency of transformer is(in %)=') \ No newline at end of file diff --git a/833/CH1/EX1.5/Ex1_5.txt b/833/CH1/EX1.5/Ex1_5.txt new file mode 100755 index 000000000..852eefca9 --- /dev/null +++ b/833/CH1/EX1.5/Ex1_5.txt @@ -0,0 +1,29 @@ +//Caption:Find (a) terminal voltage on load (b) voltage on load at high voltage terminals (c) efficiency of transformer +//Exa:1.5 +clc; +clear; +close; +n=10//ratio of high voltage to low voltage +V_1=200//Voltage on low voltage side(in volt) +x_m=231//Magnetising resistance(in ohms) +r_c=400//Core loss resistance(in ohms) +r_e=0.1//Equivalent resistance referred to low voltage side(in ohms) +x_e=0.5//Equivalent reactance referred to low voltage side(in ohms) +r_l=7.9//Load resistance(in ohms) +x_l=5.5//Load reactance(in ohms) +I_m=V_1/x_m +I_c=V_1/r_c +I_0=I_c+(%i*I_m) +R_l=r_l+r_e +X_l=x_l+x_e +I=V_1/(R_l+(%i*X_l)) +I_1=I+I_0 +V_2=V_1-I*(r_e+(%i*x_e)) +v=sqrt(V_2*conj(V_2)) +disp(v,'(a)terminal voltage on load(in volt)=') +V=v*n +disp(V,'(b)voltage on load at hgih voltage terminals(in volt)=') +P_o=v*real(I) +P_i=V_1*real(I_1) +eff=(P_o/P_i)*100 +disp(eff,'(c)efficiency of transformer is(in %)=') \ No newline at end of file diff --git a/833/CH1/EX1.5/Result1_5.txt b/833/CH1/EX1.5/Result1_5.txt new file mode 100755 index 000000000..cd373961a --- /dev/null +++ b/833/CH1/EX1.5/Result1_5.txt @@ -0,0 +1,11 @@ +(a)terminal voltage on load(in volt)= + + 192.52013 + + (b)voltage on load at hgih voltage terminals(in volt)= + + 1925.2013 + + (c)efficiency of transformer is(in %)= + + 93.343093 \ No newline at end of file diff --git a/833/CH1/EX1.6/Ex1_6.sce b/833/CH1/EX1.6/Ex1_6.sce new file mode 100755 index 000000000..a88561ac5 --- /dev/null +++ b/833/CH1/EX1.6/Ex1_6.sce @@ -0,0 +1,19 @@ +//Caption:Find (a) impedance (b) % resistance and reactance +//Exa:1.6 +clc; +clear; +close; +P_s=500000//Power supplied(in VA) +V_1=2200//Voltage on primary side(in volt) +V_2=500//Voltage on secondary side(in volt) +f=50//frequency(in hertz) +r=0.01//Resistance of transformer(in ohms) +z=0.1//impedance of transformer(in %) +I=P_s/V_2 +Z=z*V_2/I +disp(Z,'(a)Impedance(in ohms)=') +R=(I*r/V_2)*100 +disp(R,'(b) Resistance(in %)=') +x=sqrt(Z^2-r^2) +X=(x*I/V_2)*100 +disp(X,'Reactance(in %)=') \ No newline at end of file diff --git a/833/CH1/EX1.6/Ex1_6.txt b/833/CH1/EX1.6/Ex1_6.txt new file mode 100755 index 000000000..a88561ac5 --- /dev/null +++ b/833/CH1/EX1.6/Ex1_6.txt @@ -0,0 +1,19 @@ +//Caption:Find (a) impedance (b) % resistance and reactance +//Exa:1.6 +clc; +clear; +close; +P_s=500000//Power supplied(in VA) +V_1=2200//Voltage on primary side(in volt) +V_2=500//Voltage on secondary side(in volt) +f=50//frequency(in hertz) +r=0.01//Resistance of transformer(in ohms) +z=0.1//impedance of transformer(in %) +I=P_s/V_2 +Z=z*V_2/I +disp(Z,'(a)Impedance(in ohms)=') +R=(I*r/V_2)*100 +disp(R,'(b) Resistance(in %)=') +x=sqrt(Z^2-r^2) +X=(x*I/V_2)*100 +disp(X,'Reactance(in %)=') \ No newline at end of file diff --git a/833/CH1/EX1.6/Result1_6.txt b/833/CH1/EX1.6/Result1_6.txt new file mode 100755 index 000000000..18097ab68 --- /dev/null +++ b/833/CH1/EX1.6/Result1_6.txt @@ -0,0 +1,12 @@ +(a)Impedance(in ohms)= + + 0.05 + + (b) Resistance(in %)= + + 2. + + Reactance(in %)= + + 9.797959 + \ No newline at end of file -- cgit