summaryrefslogtreecommitdiff
path: root/3876/CH17/EX17.1/Ex17_1.sce
diff options
context:
space:
mode:
Diffstat (limited to '3876/CH17/EX17.1/Ex17_1.sce')
-rw-r--r--3876/CH17/EX17.1/Ex17_1.sce18
1 files changed, 18 insertions, 0 deletions
diff --git a/3876/CH17/EX17.1/Ex17_1.sce b/3876/CH17/EX17.1/Ex17_1.sce
new file mode 100644
index 000000000..2af9bef71
--- /dev/null
+++ b/3876/CH17/EX17.1/Ex17_1.sce
@@ -0,0 +1,18 @@
+//Chapter 17 Speed of Reaction Catalysis
+
+clc;
+clear;
+
+//Initialisation of Variables
+t= 40 //min
+r= 0.274
+t1= 50 //min
+
+//CALCULATIONS
+k= 2.3*log10(1/(1-r))/t
+R=10**( -k*t1/2.3)
+R1= 1-R
+
+//RESULTS
+mprintf("Velocity constant= %.3f min^-1",k)
+mprintf("\nFraction decomposed= %.3f",R1)