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 --- 1271/CH18/EX18.6/6.txt | 6 ++++++ 1271/CH18/EX18.6/example18_6.sce | 11 +++++++++++ 2 files changed, 17 insertions(+) create mode 100755 1271/CH18/EX18.6/6.txt create mode 100755 1271/CH18/EX18.6/example18_6.sce (limited to '1271/CH18/EX18.6') 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) -- cgit