diff options
Diffstat (limited to '1445/CH7/EX7.11/ch7_ex_11.sce')
-rw-r--r-- | 1445/CH7/EX7.11/ch7_ex_11.sce | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/1445/CH7/EX7.11/ch7_ex_11.sce b/1445/CH7/EX7.11/ch7_ex_11.sce new file mode 100644 index 000000000..9c41d49e9 --- /dev/null +++ b/1445/CH7/EX7.11/ch7_ex_11.sce @@ -0,0 +1,27 @@ +//CHAPTER 7- SINGLE PHASE TRANSFORMER +//Example 11 + +disp("CHAPTER 7"); +disp("EXAMPLE 11"); + +//VARIABLE INITIALIZATION +va=44000; // +v1=2200; //primary voltage in Volts +v2=220; //secondary voltage in Volts +N2=50; //turns in secondary coil + +//SOLUTION +// N1/N2=V1/V2 +N1=N2*(v1/v2); +disp("SOLUTION (a)"); +disp(sprintf("The no. of turns on HT side is %f",N1)); +// +//since losses are negligible, input=output, V1I1=V2I2 +I1=va/v1; +I2=va/v2; +disp("SOLUTION (b)"); +disp(sprintf("The primary full load current is %f Amp",I1)); +disp(sprintf("The secondary full load current is %f Amp",I2)); +disp(" "); +// +//END |