summaryrefslogtreecommitdiff
path: root/1445/CH7/EX7.11/ch7_ex_11.sce
blob: 9c41d49e97e0eab7c13041a054a227758c8b8d91 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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