diff options
Diffstat (limited to '2912/CH10/EX10.3/Ex10_3.sce')
-rwxr-xr-x | 2912/CH10/EX10.3/Ex10_3.sce | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/2912/CH10/EX10.3/Ex10_3.sce b/2912/CH10/EX10.3/Ex10_3.sce new file mode 100755 index 000000000..62fe79240 --- /dev/null +++ b/2912/CH10/EX10.3/Ex10_3.sce @@ -0,0 +1,17 @@ +// chapter 10
+// example 10.3
+// calculate isotropic mass at 5.1K
+// page 313
+clear;
+clc;
+// given
+M1=199.5; // in amu (isotropic mass at 5K)
+T1=5; // in K (first critical temperature)
+T2=5.1; // in K (second critical temperature)
+//calculate
+// since Tc=C*(1/sqrt(M)
+// therefore T1*sqrt(M1)=T2*sqrt(M2)
+// therefore we have M2=(T1/T2)^2*M1
+M2=(T1/T2)^2*M1; //calculation of isotropic mass at 5.1K
+printf('\nThe isotropic mass at 5.1K is \t M2=%.3f a.m.u.',M2);
+
|