diff options
Diffstat (limited to '2672/CH2/EX2.3')
-rwxr-xr-x | 2672/CH2/EX2.3/Ex2_3.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2672/CH2/EX2.3/Ex2_3.sce b/2672/CH2/EX2.3/Ex2_3.sce new file mode 100755 index 000000000..8c0d401ee --- /dev/null +++ b/2672/CH2/EX2.3/Ex2_3.sce @@ -0,0 +1,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)");
|