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 /1445/CH7/EX7.1 | |
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 '1445/CH7/EX7.1')
-rw-r--r-- | 1445/CH7/EX7.1/Ex7_1.sce | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/1445/CH7/EX7.1/Ex7_1.sce b/1445/CH7/EX7.1/Ex7_1.sce new file mode 100644 index 000000000..c88808117 --- /dev/null +++ b/1445/CH7/EX7.1/Ex7_1.sce @@ -0,0 +1,35 @@ +//CHAPTER 7- SINGLE PHASE TRANSFORMER +//Example 1 + +disp("CHAPTER 7"); +disp("EXAMPLE 1"); + +//VARIABLE INITIALIZATION +I_0=10; //no load current in Amperes +pf=0.25; //power factor +v1=400; //in Volts +f=50; //in Hertz + +//SOLUTION + +//solution (a) +//magnetizing component +//Iphi=I0.sin theta +theta=acos(pf); //taking value of theta from the given power factor +I_phi=I_0*sin(theta); +disp(sprintf("(a) The magnetizing component of no load current is %.2f A",I_phi)); + +//solution (b) +//iron loss +//Pc=V1.Ic +//Ic=I0.cos theta & also Ic=I0.pf as pf=cos theta +p_c=v1*I_0*pf; +disp(sprintf("(b) The iron loss is %d W",p_c)); + +//solution (c) +N1=500; // number of turns in primary given +phi_m=v1/(sqrt(2)*%pi*f*N1); +disp(sprintf("(c) The maximum value of flux in the core is %.2f mWb",phi_m*1000)); + +//END + |