blob: a41306a6d3dd59fe7388d8fa72b91e8a5b15b044 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clear
//Given
r=0.5 //m
n=2 //r.p.s
B=0.4*10**-4 //T
//Calculation
//
w=2*%pi*n
e=0.5*B*r**2*w
//Result
printf("\n Magnitude of induced e.m.f between the axle and rim is %0.2f *10**-5 V",e*10**5)
|