blob: 0781b2be2e4f41a4c24f6f7cf6549756da6e054e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
// To find flux density in the core and induced emf in the secondary winding
clc;
clear;
E1=500;
A=60*(10^-4);
f=50;
N1=400;
N2=1000;
// E=4.44*f*N*Bm*A Induced EMF equation
Bm=E1/(4.44*f*N1*A);
E2=4.44*f*N2*Bm*A;
printf('a) The peak value of the flux density in the core = %f tesla \n',Bm)
printf('b) The voltage induced in the secondary winding = %f V \n',E2)
|