diff options
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)
|