diff options
Diffstat (limited to '1427/CH18/EX18.8/18_8.sce')
-rw-r--r-- | 1427/CH18/EX18.8/18_8.sce | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/1427/CH18/EX18.8/18_8.sce b/1427/CH18/EX18.8/18_8.sce new file mode 100644 index 000000000..21431e5a1 --- /dev/null +++ b/1427/CH18/EX18.8/18_8.sce @@ -0,0 +1,9 @@ +//ques-18.8
+//Calculating heat of combustion of ethene at constant pressure
+clc
+T=17;//temperature (in degree celsius)
+E=-332.19;//heat of combustion at constant volume (in kcal)
+R=0.001987;//in kcal/K/mol
+n=2-(1+3);//difference in gaseous vapours
+H=E+n*R*(T+273);//heat of combustion at constant pressure
+printf("Heat of combustion of ethene at constant pressure is %.3f kcal/mol.",H);
|