blob: 8c0d401ee995da1b0de06e34f501dfb21ac96e99 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
//Ex_2_3
clc;
clear;
close;
format('v',6);
//given data :
N=100;//turns
l=0.5;//m
A=10/10000;//m^2
mur=2000;//relative permeability of iron
mu0=4*%pi*10^-7;//permeability
I=5;//A
t=10;//ms
L=mur*mu0*N^2*A/l*1000;//mH
disp(L,"Inductance of the coil(mH)");
E=L*2*I/t;//V
disp(E,"Induced emf in the coil(V)");
|