blob: 2f4ebce2d12e29ce920563b7186fd0f2dacf6c90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Example 7.8
N2=1700; // turns of Coil 1
Q2=0.8*10^-3; // total Megnetic Flux
I2=6; // Current in A Coil 2
L2=N2*(Q2/I2); // Formula for (Self Inductance of Coil 1)
disp('(a) Self Induction of a Coil 2 = '+string(L2)+' H');
N1=600; // turns of Coil 2
L1=L2*(N1^2/N2^2); // Formula for(Self Inductance of Coil 2)
disp('(b) Self Induction of a Coil 1 = '+string(L1)+' H');
Q21=0.5*10^-3; // Megnetic Flux in 1st Coil
k=Q21/Q2; // Constant
disp( '(c) Perposnality Constant (k) = '+string(k));
M=k*sqrt(L1*L2); // Mutual Inductance of Coil 1 & 2
disp('(d) Mutual induction of a Coil = '+string(M)+' H');
// p 233 7.8
|