summaryrefslogtreecommitdiff
path: root/3769/CH12/EX12.24/Ex12_24.sce
blob: 9ae7188f2d84f50e593950e3465de9ef28b0dd8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
clear
//Given
N=1200
A=12*10**-4                         //m**2
r=0.15                                     //m
N2=300
a=0.05

//Calculation
//
u=4*%pi*10**-7
L=(u*N**2*A)/(2*%pi*r)
M=(u*N*N2*A)/(2*%pi*r)
dl=2/a
e=M*dl

//Result
printf("\n (i) Self inductance of the toroid is %0.1f  *10**-3 H",L*10**3)
printf("\n (ii) Induced e.m.f. in the second coil is %0.3f  V",e)