summaryrefslogtreecommitdiff
path: root/3850/CH37/EX37.1
diff options
context:
space:
mode:
Diffstat (limited to '3850/CH37/EX37.1')
-rw-r--r--3850/CH37/EX37.1/Ex37_1.sce20
-rw-r--r--3850/CH37/EX37.1/Ex37_1.txt2
2 files changed, 22 insertions, 0 deletions
diff --git a/3850/CH37/EX37.1/Ex37_1.sce b/3850/CH37/EX37.1/Ex37_1.sce
new file mode 100644
index 000000000..5aa9dfa6a
--- /dev/null
+++ b/3850/CH37/EX37.1/Ex37_1.sce
@@ -0,0 +1,20 @@
+
+//To Calculate the Intensity of Magnetization of Bar Magnet
+
+//Example 37.1
+
+clear;
+
+clc;
+
+m=6.6*10^-3;//Mass of bar magnet (made of steel) in kg
+
+rho=7.9*10^3;//Density of steel in kg/m^3
+
+M=2.5;//Magnetic Moment of Bar Magnet in A-m^2
+
+V=m/rho;//Volume of bar magnet in m^3
+
+I=M/V;//Intensity of Magnetization in A/m
+
+printf("Intensity of magnetization of bar magnet = %.1f*10^6 A/m",I*10^-6);
diff --git a/3850/CH37/EX37.1/Ex37_1.txt b/3850/CH37/EX37.1/Ex37_1.txt
new file mode 100644
index 000000000..310e91f40
--- /dev/null
+++ b/3850/CH37/EX37.1/Ex37_1.txt
@@ -0,0 +1,2 @@
+
+ Intensity of magnetization of bar magnet = 3.0*10^6 A/m \ No newline at end of file