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 /2780/CH10/EX10.1 | |
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 '2780/CH10/EX10.1')
-rwxr-xr-x | 2780/CH10/EX10.1/Ex10_1.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/2780/CH10/EX10.1/Ex10_1.sce b/2780/CH10/EX10.1/Ex10_1.sce new file mode 100755 index 000000000..937c30874 --- /dev/null +++ b/2780/CH10/EX10.1/Ex10_1.sce @@ -0,0 +1,12 @@ +clc
+//to calculate permeability and susceptibility of the bar
+phi=2.4*10^-5 //magnetic flux in weber
+A=0.2*10^-4 //cross sectional area in m^2
+B=phi/A //magnetic induction in N/Am
+H=1200 //magnetising field in A/m
+mu=B/H
+disp("permeability is mu="+string(mu)+"N/A^2")
+muo=4*%pi*10^-7
+chim=(mu/muo)-1
+disp("susceptibility is chim="+string(chim)+"unitless")
+//the answer is given wrong in the book (round off error) chim=737
|