diff options
Diffstat (limited to '1439/CH4/EX4.13')
-rwxr-xr-x | 1439/CH4/EX4.13/4_13.sce | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/1439/CH4/EX4.13/4_13.sce b/1439/CH4/EX4.13/4_13.sce new file mode 100755 index 000000000..223a4cb4e --- /dev/null +++ b/1439/CH4/EX4.13/4_13.sce @@ -0,0 +1,12 @@ +clc
+//initialisation of variables
+dH293= -115595.8 //cal
+T1= 1500 //K
+T2= 298 //K
+k1= -5.6146 //cal deg^-1 mole^-1
+k2= 1.8931*10^-3 //cal deg^-2 mole^-1
+k3= 4.723*10^-7 //cal deg^-3 mole^-1
+//CALCULATIONS
+dH=dH293+ k1*(T1-T2)+(k2*(T1^2-T2^2)/2)+(k3*(T1^3-T2^3)/3)
+//RESULTS
+printf ('dH1500= %.f cal ',dH)
|