diff options
Diffstat (limited to '1427/CH16/EX16.17/16_17.sce')
-rw-r--r-- | 1427/CH16/EX16.17/16_17.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1427/CH16/EX16.17/16_17.sce b/1427/CH16/EX16.17/16_17.sce new file mode 100644 index 000000000..2c8228e5b --- /dev/null +++ b/1427/CH16/EX16.17/16_17.sce @@ -0,0 +1,9 @@ +//ques-16.17
+//Finding temperature at which half life becomes 10 minutes
+clc
+A=4*10^13;//arrhenius constant (in /s)
+Ea=98.6;//energy of activation (in kJ/mol)
+t=10;//half-life (in min)
+k=0.693/(t*60);//rate constant
+T=(Ea*1000)/(2.303*8.314*log10(A/k));//temperature
+printf("Temperature required is %.2f K.",T);
|