From b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b Mon Sep 17 00:00:00 2001 From: priyanka Date: Wed, 24 Jun 2015 15:03:17 +0530 Subject: initial commit / add all books --- 2102/CH1/EX1.12/exa_1_12.sce | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100755 2102/CH1/EX1.12/exa_1_12.sce (limited to '2102/CH1/EX1.12') diff --git a/2102/CH1/EX1.12/exa_1_12.sce b/2102/CH1/EX1.12/exa_1_12.sce new file mode 100755 index 000000000..cb70d3d6e --- /dev/null +++ b/2102/CH1/EX1.12/exa_1_12.sce @@ -0,0 +1,17 @@ +// Exa 1.12 +clc; +clear; +close; +// Given data +vol= 10^-4;// volume of the rod in m^3 +i=0.5;// in amp +n= 5;// turns/cm +n= n*10^2;// turns/meter +miu_r= 1000; +//B= miu_o*(H+I) +// Where I= Bo/miu_o-H and B= miu*H = miu_r*miu_o*H +// Then I= miu_r*miu_o*H/miu_o - H = (miu_r-1)*H +// H= n*i +I= (miu_r-1)*n*i;// in amp/meter +MagMoment= I*vol;// in Am^2 +disp(round(MagMoment),"Magnetic moment in Am^2 is : ") -- cgit