diff options
Diffstat (limited to '3159/CH16/EX16.2')
-rwxr-xr-x | 3159/CH16/EX16.2/Ex16_2.sce | 19 | ||||
-rwxr-xr-x | 3159/CH16/EX16.2/Ex16_2.txt | 10 |
2 files changed, 29 insertions, 0 deletions
diff --git a/3159/CH16/EX16.2/Ex16_2.sce b/3159/CH16/EX16.2/Ex16_2.sce new file mode 100755 index 000000000..1ca826a0d --- /dev/null +++ b/3159/CH16/EX16.2/Ex16_2.sce @@ -0,0 +1,19 @@ +// Comparison of saturation temperatures
+clc
+t1 = 0 // temperature in kelvin
+t2 = 300 // temperature in kelvin
+m_net_Gd = 7 // net magnetic moment of gadolinium
+m_net_Co = 1.7 // net magnetic moment of cobalt
+t_c_Gd = 289 // curie temperature for Gd
+printf("\n Example 16.2")
+printf("\n Part A:")
+if m_net_Gd> m_net_Co then
+printf("\n At %d K, Net magnetic moment of gadolinium i.e. %d is greater than net magnetic moment of cobalt i.e. %.1f ",t1,m_net_Gd,m_net_Co)
+printf("\n So, Gd will have higher saturation magnetization")
+end
+printf("\n\n Part B:")
+if t_c_Gd<t2 then
+ printf("\n At temperature %d K, Gd is above its curie temperature of %dK",t2,t_c_Gd)
+ printf("\n Gd will be paramagnetic at %d K and will have negligible magnetization\n as compared to Co, which has higher curie temperature",t2)
+end
+
diff --git a/3159/CH16/EX16.2/Ex16_2.txt b/3159/CH16/EX16.2/Ex16_2.txt new file mode 100755 index 000000000..35a826878 --- /dev/null +++ b/3159/CH16/EX16.2/Ex16_2.txt @@ -0,0 +1,10 @@ +
+ Example 16.2
+ Part A:
+ At 0 K, Net magnetic moment of gadolinium i.e. 7 is greater than net magnetic moment of cobalt i.e. 1.7
+ So, Gd will have higher saturation magnetization
+
+ Part B:
+ At temperature 300 K, Gd is above its curie temperature of 289K
+ Gd will be paramagnetic at 300 K and will have negligible magnetization
+ as compared to Co, which has higher curie temperature
\ No newline at end of file |