diff options
Diffstat (limited to '1442/CH19/EX19.6/19_6.sce')
-rwxr-xr-x | 1442/CH19/EX19.6/19_6.sce | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/1442/CH19/EX19.6/19_6.sce b/1442/CH19/EX19.6/19_6.sce new file mode 100755 index 000000000..9769b578c --- /dev/null +++ b/1442/CH19/EX19.6/19_6.sce @@ -0,0 +1,14 @@ +clc
+//initialisation of variables
+T= 25 //C
+hfT= -241820 //kJ/kmol
+R= 8.314 //J/mol K
+k= 1.4
+cpH2O= 4.45
+cpO2= 3.5
+T1= 1000 //C
+//CALCULATIONS
+S= (cpH2O-k*cpO2)
+hfT1= hfT+S*(T1-T)
+//RESULTS
+printf (' enthalpy formation= %.f kJ/kmol ',hfT1)
|