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 /1949/CH6/EX6.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 '1949/CH6/EX6.1')
-rwxr-xr-x | 1949/CH6/EX6.1/Ex6_1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/1949/CH6/EX6.1/Ex6_1.sce b/1949/CH6/EX6.1/Ex6_1.sce new file mode 100755 index 000000000..987ff7c8c --- /dev/null +++ b/1949/CH6/EX6.1/Ex6_1.sce @@ -0,0 +1,15 @@ +//Chapter-6,Example 6_1,Page 6-26
+clc()
+
+//Given Values:
+H=198 //Magnetizing Force in Ampere per meter
+M=2300 //Magnetization in Ampere per meter
+u0=4*%pi*10^-7 //Permeability in vacuum
+
+//Calculations:
+//H=(B/u0)-M
+B=u0*(H+M) //Flux Density
+ur=B/(u0*H) //Relative Permeability
+
+printf('Corresponding Flux Density is =%.5f Wb/m^2 \n \n',B)
+printf(' Relative Permeability is =%.2f \n',ur)
|