diff options
Diffstat (limited to '1445/CH7/EX7.30/ch7_ex_30.sce')
-rw-r--r-- | 1445/CH7/EX7.30/ch7_ex_30.sce | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/1445/CH7/EX7.30/ch7_ex_30.sce b/1445/CH7/EX7.30/ch7_ex_30.sce new file mode 100644 index 000000000..ad002b39f --- /dev/null +++ b/1445/CH7/EX7.30/ch7_ex_30.sce @@ -0,0 +1,21 @@ +//CHAPTER 7- SINGLE PHASE TRANSFORMER +//Example 30 + +disp("CHAPTER 7"); +disp("EXAMPLE 30"); + +//VARIABLE INITIALIZATION +v1=6600; //primary voltage in Volts +v2=440; //secondary voltage in Volts +e_r=0.02; //equivalent resistance +e_x=0.05; //equivalent reactance +pf=0.8; +// +//SOLUTION +phi=acos(pf); +reg=e_r*cos(phi)+e_x*sin(phi); +V2=v2*(1-reg); +disp(sprintf("The secondary terminal voltage is %f V",V2)); +disp(" "); +// +//END |