blob: 5ef622c591f30583028f5e6ffa003b00daeeee24 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
// Example 5.6
B=38*10^-6; // Megnetic Field
l=52; // Length of conductor
Q=90; // Angle of Motion in case 1
v=(1100*1000)/3600; // velocity in m/s
e=B*l*v*sind(Q); // Formula of emf
disp(' emf Generated between wing-tips = '+string(e)+' Volt');
// p 198 5.6
|