blob: 63a86c6e9a8adb46ae7802572be73bd04ac7b796 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//Ex_2_2
clc;
clear;
close;
format('v',6);
//given data :
l=0.5;//m
B=0.5;//Wb/m^2
I=50;//A
v=20;//m/s
F=B*l*I;//N
disp(F,"Force expereinced by the conductor(N)");
e=B*l*v;//V
disp(e,"emf induced(V)");
|