diff options
Diffstat (limited to '1427/CH16/EX16.18/16_18.sce')
-rw-r--r-- | 1427/CH16/EX16.18/16_18.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1427/CH16/EX16.18/16_18.sce b/1427/CH16/EX16.18/16_18.sce new file mode 100644 index 000000000..d3d011151 --- /dev/null +++ b/1427/CH16/EX16.18/16_18.sce @@ -0,0 +1,11 @@ +//ques-16.18
+//Finding temperature at which k is 10000 per s
+clc
+k1=4.5*10^3;//rate constant (in /s)
+T1=1;//temperature (in degree celsius)
+Ea=58;//activation energy (in kJ/mol)
+k2=10^4;//new rate constant (in /s)
+//logk = logA - (Ea/(2.303*R*T))
+z=14.71;//logA
+T2=(Ea*1000)/(2.303*8.314*(z-log10(k2)));//temperature (in K)
+printf("Temperature required is %.0f K.",T2);
|