summaryrefslogtreecommitdiff
path: root/1445/CH7/EX7.5/ch7_ex_5.sce
blob: 50142bcc0686877e543571c1dbcbf3469fa48ac4 (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
//CHAPTER 7- SINGLE PHASE TRANSFORMER
//Example 5

disp("CHAPTER 7");
disp("EXAMPLE 5");

//VARIABLE INITIALIZATION
N1=350;                       //number of turns on primary side
N2=1050;                      //number of turns on secondary side
v1=400;                       //primary voltage in Volts
f=50;                         //in Hertz
ar=50/10000;                  //cross-sectional area in m^2

//SOLUTION

//solution (i)
B=v1/(4.44*ar*f*N1);
disp(sprintf("(i) The maximum flux density is %f Wb/m^2",B));

//solution (ii)
ratio=N2/N1;
v2=ratio*v1;
disp(sprintf("(ii) The induced emf in the secondary winding is %d V",v2));

//END