summaryrefslogtreecommitdiff
path: root/38/CH1/EX1.4b/4b.sce
blob: 66b51985c0a72747795fdb6e9c6274405ba315ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Caption: Finding Induced voltage of a magnetic circuit 

close;
clc;
syms t

w=2*%pi*60//angular frequency

B=1.0*sin(w*t);
N=500;
A=9*10^-4;
e=N*A*diff(B,t);

disp(e,'Induced Voltage = ');