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.41 | |
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.41')
-rw-r--r-- | 1445/CH7/EX7.41/Ex7_41.sce | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/1445/CH7/EX7.41/Ex7_41.sce b/1445/CH7/EX7.41/Ex7_41.sce new file mode 100644 index 000000000..ffab26d2c --- /dev/null +++ b/1445/CH7/EX7.41/Ex7_41.sce @@ -0,0 +1,32 @@ +//CHAPTER 7- SINGLE PHASE TRANSFORMER +//Example 41 + +disp("CHAPTER 7"); +disp("EXAMPLE 41"); + +//3-phase 550/440 V star connected transformer supplies a load of 400kW +//VARIABLE INITIALIZATION +v1=550; //primary voltage in Volts +v2=440; //secondary voltage in Volts +p=400*1000; //load in Watts +pf=0.8; //power factor(lagging) + +//SOLUTION + +//solution (a) +I2=p/(sqrt(3)*v2*pf); //current on secondary side +I1=I2*(v2/v1); //since I1:I2=N2:N1 +I=I2-I1; //in sections Oa, Ob and Oc +disp(sprintf("(a) The current flowing in sections Oa, Ob and Oc is %.0f A",I)); +disp(sprintf("The current flowing in sections aA, bB and cC is %.0f A",I1)); + +//solution (b) +//power transferred by transformer action = Pin.(1-k) +p_o=p*(1-(v2/v1)); //k=v2/v1 +disp(sprintf("(b) The power transferred by transformer action %.0f kW",p_o/1000)); + +//solution (c) +p_d=p-p_o; +disp(sprintf("(c) The power conducted directly %d kW",p_d/1000)); + +//END |