blob: 165e5a8c75b67e41ee44fe3038c0971079b5466d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
//chapter-12,Example12_6,pg 508
f=2*10^3//frequency of signal
v=1//velocity of tape
w=0.05*10^-3//gap width
N=22//no.of turns on head
V=31*10^-3//rms voltage o/p
x=(%pi*f*w)/v
x=x*(%pi/180)
M=((V*w)/(2*v*N*sin(x)))//magnetic flux in tape
printf("magnetic flux in tape\n")
printf("M=%.8f Wb\n",M)
|