diff options
Diffstat (limited to '3651/CH3/EX3.1/1.sce')
-rw-r--r-- | 3651/CH3/EX3.1/1.sce | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/3651/CH3/EX3.1/1.sce b/3651/CH3/EX3.1/1.sce new file mode 100644 index 000000000..aee0009f7 --- /dev/null +++ b/3651/CH3/EX3.1/1.sce @@ -0,0 +1,15 @@ +//Variable declaration
+N=6.023*10**26
+deltaHv=120
+B=1.38*10**-23
+k=6.023*10**23
+
+//Calculations
+n0=0 // 0 in denominator
+n300=N*exp(-deltaHv*10**3/(k*B*300)) //The number of vacancies per kilomole of copper
+n900=N*exp(-(deltaHv*10**3)/(k*B*900))
+
+//Results
+printf('at 0K, The number of vacancies per kilomole of copper is %0.3f' ,n0)
+printf('at 300K, The number of vacancies per kilomole of copper is %0.3f *10**5\n',(n300/10**5))
+printf('at 900K, The numb ber of vacancies per kilomole of copper is %0.3f *10**19\n',(n900/10**19))
\ No newline at end of file |