From 7f60ea012dd2524dae921a2a35adbf7ef21f2bb6 Mon Sep 17 00:00:00 2001 From: prashantsinalkar Date: Tue, 10 Oct 2017 12:27:19 +0530 Subject: initial commit / add all books --- 3835/CH3/EX3.2/Ex3_2.sce | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 3835/CH3/EX3.2/Ex3_2.sce (limited to '3835/CH3/EX3.2') diff --git a/3835/CH3/EX3.2/Ex3_2.sce b/3835/CH3/EX3.2/Ex3_2.sce new file mode 100644 index 000000000..5c1ee3de9 --- /dev/null +++ b/3835/CH3/EX3.2/Ex3_2.sce @@ -0,0 +1,35 @@ +clear +// +//given +l=0.5 +A=4*10**-4 +N=250 +I=1.5 +flux=0.25*10**-3 +fluxdensity=flux/A +f=N*I //magnetomotive force +H=(N*I)/l //magnetic field strength +pi=3.14 +u1=4*%pi*10**-7 +u2=fluxdensity/(u1*H) +printf("\n The flux density is= %0.3f Wb/m**2",fluxdensity) +printf("\n The magnetomotive force is= %0.0f AT",f) +printf("\n The magnetic field strength is= %0.0f AT/m",H) +printf("\n The relative permeability is= %0.0f ",u2) +//case b +//given +I=5 +flux=0.6*10**-3 +A=4*10**-4 +N=250 +l=0.5 +fluxdensity=flux/A +printf("\n The flux density is= %0.1f Wb/m**2",fluxdensity) +f=N*I //magnetomotive force +printf("\n The magnetomotive force is= %0.0f AT",f) +H=(N*I)/l //magnetic field stength +printf("\n Magnetic field strength= %0.0f AT/m",H) +pi=3.14 +u1=4*%pi*10**-7 +u2=fluxdensity/(u1*H) +printf("\n The relative permeability is= %0.1f ",u2) -- cgit