blob: a4b59ce9c1598cdc2e30cb2748fc0ab85351d319 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
clear
//Given
v=72 *(5/18.0) //Km/h
B=40*10**-6 //T
A=40
l=2 //m
t=1.0
N=1
//Calculation
A=l*v
a=B*A
e=N*a/t
//Result
printf("\n e.m.f generated in the axle of the car %0.3f mV", e*10**3)
|