diff options
Diffstat (limited to '3669/CH7/EX7.9/9.sce')
-rw-r--r-- | 3669/CH7/EX7.9/9.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/3669/CH7/EX7.9/9.sce b/3669/CH7/EX7.9/9.sce new file mode 100644 index 000000000..81090b7bc --- /dev/null +++ b/3669/CH7/EX7.9/9.sce @@ -0,0 +1,12 @@ +
+//Variable declaration
+N=10**28; //number of atoms(per m**3)
+chi1=2.8*10**-4; //susceptibility
+T1=350; //temperature(K)
+T2=300; //temperature(K)
+
+//Calculation
+chi2=chi1*T1/T2; //susceptibility
+
+//Result
+printf('susceptibility is %0.3f *10**-4 \n',(chi2*10**4))
\ No newline at end of file |