diff options
Diffstat (limited to '1019/CH8/EX8.32/Example_8_32.sce')
-rw-r--r-- | 1019/CH8/EX8.32/Example_8_32.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1019/CH8/EX8.32/Example_8_32.sce b/1019/CH8/EX8.32/Example_8_32.sce new file mode 100644 index 000000000..f75a04df2 --- /dev/null +++ b/1019/CH8/EX8.32/Example_8_32.sce @@ -0,0 +1,14 @@ +//Example 8.32
+clear;
+clc;
+
+//Given
+n1=1;//moles of acetic acid and ethanol initially mixed
+n2=0.667;//moles of easter and water produced
+
+//To determine the equillibrium constant
+n3=1-0.667;//moles of acid and ethanol remaining
+N=2;//total number of moles of reactants taken
+Ka=((n2/N)*(n2/N))/((n3/N)*(n3/N));
+mprintf('Equillibrium constant for the reaction = %f',Ka);
+//end
\ No newline at end of file |