blob: ece1dd7ff27fb98ecf341b62d3b3e8550dd576a7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
l=200*10^(-3);
i1=2;
i2=5;
t=0.1;
disp("Part a");
r=(i2-i1)/t;
disp("the rate of change of current (in A/s) is"); disp(r);
disp("Part b");
v=l*r;
disp("the self-induced e.m.f. is"); disp(v);
|