diff options
Diffstat (limited to '1967/CH5/EX5.1')
-rwxr-xr-x | 1967/CH5/EX5.1/5_1.sce | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/1967/CH5/EX5.1/5_1.sce b/1967/CH5/EX5.1/5_1.sce new file mode 100755 index 000000000..2fe778db8 --- /dev/null +++ b/1967/CH5/EX5.1/5_1.sce @@ -0,0 +1,11 @@ +clc
+//initialisation of variables
+clear
+Q1= -1227 //kcal
+R= 2*10^-3 //kcal
+T= 25 //C
+dn= -2
+//CALCULATIONS
+Qp= Q1+R*(273+T)*dn
+//RESULTS
+printf ('Heat of reaction = %.1f kcal',Qp)
|