summaryrefslogtreecommitdiff
path: root/1271/CH18/EX18.3
diff options
context:
space:
mode:
authorpriyanka2015-06-24 15:03:17 +0530
committerpriyanka2015-06-24 15:03:17 +0530
commitb1f5c3f8d6671b4331cef1dcebdf63b7a43a3a2b (patch)
treeab291cffc65280e58ac82470ba63fbcca7805165 /1271/CH18/EX18.3
downloadScilab-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.3')
-rwxr-xr-x1271/CH18/EX18.3/3.txt5
-rwxr-xr-x1271/CH18/EX18.3/example18_3.sce9
2 files changed, 14 insertions, 0 deletions
diff --git a/1271/CH18/EX18.3/3.txt b/1271/CH18/EX18.3/3.txt
new file mode 100755
index 000000000..b04f60881
--- /dev/null
+++ b/1271/CH18/EX18.3/3.txt
@@ -0,0 +1,5 @@
+ # PROBLEM 3 #
+Standard formula used
+ B = mu_0*H
+
+ Percentage increase in magnetic induction is 0.001200 percent.
diff --git a/1271/CH18/EX18.3/example18_3.sce b/1271/CH18/EX18.3/example18_3.sce
new file mode 100755
index 000000000..504b30070
--- /dev/null
+++ b/1271/CH18/EX18.3/example18_3.sce
@@ -0,0 +1,9 @@
+clc
+// Given that
+X = 1.2e-5 // magnetic susceptibility of magnesium
+// Sample Problem 3 on page no. 18.22
+printf("\n # PROBLEM 3 # \n")
+printf("Standard formula used \n ")
+printf(" B = mu_0*H \n")
+p = 100 * X
+printf("\n Percentage increase in magnetic induction is %f percent.",p)