blob: fdeb3d0da3dc87805ad6ede23a10d15667075d23 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// Exa 7.12
clc;
clear;
// Given
// A variable inductive transducer
L1 = 2.5; // inductance in mH
N1 = 50; // No of effective turns at L1
N2 = 52; // No of effective turns at L2
// Solution
printf(' Since L directly proportional to N^2 \n');
printf(' L1/N1^2 = L2/N2^2 \n ');
printf(' Therefore, L2 i.e, \n ');
L2 = L1* (N2/N1)^2;
printf(' The inductance of coil when the effective turns of the coil are 52 = %.2f mH \n',L2);
|