diff options
author | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
---|---|---|
committer | prashantsinalkar | 2017-10-10 12:27:19 +0530 |
commit | 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 (patch) | |
tree | dbb9e3ddb5fc829e7c5c7e6be99b2c4ba356132c /1445/CH7/EX7.29/ch7_ex_29.sce | |
parent | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (diff) | |
download | Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.gz Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.tar.bz2 Scilab-TBC-Uploads-7f60ea012dd2524dae921a2a35adbf7ef21f2bb6.zip |
initial commit / add all books
Diffstat (limited to '1445/CH7/EX7.29/ch7_ex_29.sce')
-rw-r--r-- | 1445/CH7/EX7.29/ch7_ex_29.sce | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/1445/CH7/EX7.29/ch7_ex_29.sce b/1445/CH7/EX7.29/ch7_ex_29.sce new file mode 100644 index 000000000..3a0def33d --- /dev/null +++ b/1445/CH7/EX7.29/ch7_ex_29.sce @@ -0,0 +1,58 @@ +//CHAPTER 7- SINGLE PHASE TRANSFORMER +//Example 29 + +disp("CHAPTER 7"); +disp("EXAMPLE 29"); + +//VARIABLE INITIALIZATION +va=200000; //apparent power +v1=4000; //primary voltage in Volts +v2=1000; //secondary voltage in Volts +f=50; +//loads +pf=1; +eff=0.97; // at full load and at 60% of full load +nlpf=0.5; //no load pf +lpf=0.8 //lagging pf +reg=0.05; //%regulation at 0.8 pf +// +//SOLUTION +loss=(1-eff)*va/eff; //=Pc+Pcu losses +//simultaneous equation to be solved +//eq 1: Pc+Pcu=loss; +//fractipon of copper/ ohmic losses +f=(0.6)^2; // 60% of full load +//the 2nd equation is Pc+f*Pcu=loss +//now the matrix +M=[1,1;1,f]; +A=[loss,loss*0.6]; +Mi=inv(M); +Ans=A*inv(M); +Pc=Ans(1,1); +Pcu=Ans(1,2); +//disp(sprintf("The Pc is %f",Pc)); +//disp(sprintf("The Pcu is %f",Pcu)); +//LV side +R_e2=Pcu/va; +//from %reg find X_e2 +phi=acos(lpf); +X_e2=(reg-R_e2*cos(phi))/sin(phi); +//in oms units +R_e2=R_e2*v2^2/va; // in ohms +X_e2=X_e2*v2^2/va; // in ohms +disp(sprintf("The Re2 is %f Ω",R_e2)); +disp(sprintf("The Xe2 is %f Ω",X_e2)); +// +Rc=v2^2/Pc; +Ie2=Pc/(v2*0.25); +Ic=Pc/v2; +Iphi=sqrt(Ie2^2-Ic^2); +Xphi=v2/Iphi; +disp(sprintf("The Rc is %f Ω",Rc)); +disp(sprintf("The Ie2 is %f A",Ie2)); +disp(sprintf("The Ic is %f A",Ic)); +disp(sprintf("The Iphi is %f A",Iphi)); +disp(sprintf("The Xphi is %f Ω",Xphi)); +disp(" "); +// +//END |