diff options
author | priyanka | 2015-06-24 15:03:17 +0530 |
---|---|---|
committer | priyanka | 2015-06-24 15:03:17 +0530 |
commit | b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch) | |
tree | ab291cffc65280e58ac82470ba63fbcca7805165 /2102/CH1/EX1.12 | |
download | Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.gz Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.tar.bz2 Scilab-TBC-Uploads-b1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b.zip |
initial commit / add all books
Diffstat (limited to '2102/CH1/EX1.12')
-rwxr-xr-x | 2102/CH1/EX1.12/exa_1_12.sce | 17 |
1 files changed, 17 insertions, 0 deletions
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 : ")
|