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 /1271/CH18/EX18.6 | |
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 '1271/CH18/EX18.6')
-rwxr-xr-x | 1271/CH18/EX18.6/6.txt | 6 | ||||
-rwxr-xr-x | 1271/CH18/EX18.6/example18_6.sce | 11 |
2 files changed, 17 insertions, 0 deletions
diff --git a/1271/CH18/EX18.6/6.txt b/1271/CH18/EX18.6/6.txt new file mode 100755 index 000000000..f58eba87c --- /dev/null +++ b/1271/CH18/EX18.6/6.txt @@ -0,0 +1,6 @@ + # PROBLEM 6 #
+Standard formula used
+ mu_r = 1 + Chi
+
+ Absolute permeability is 1.268449e-06 N/A^2.
+ Relative permeability is 1.009400.
diff --git a/1271/CH18/EX18.6/example18_6.sce b/1271/CH18/EX18.6/example18_6.sce new file mode 100755 index 000000000..01f940a71 --- /dev/null +++ b/1271/CH18/EX18.6/example18_6.sce @@ -0,0 +1,11 @@ +clc +// Given that +X = 9.4e-2 // magnetic susceptibility +mu_ = 4 * %pi * 1e-7 // magnetic permeability of space +// Sample Problem 6 on page no. 18.23 +printf("\n # PROBLEM 6 # \n") +printf("Standard formula used \n ") +printf(" mu_r = 1 + Chi \n") +mu_r = 1 + X +mu = mu_ * mu_r +printf("\n Absolute permeability is %e N/A^2.\n Relative permeability is %f.",mu,mu_r) |