summaryrefslogtreecommitdiff
path: root/1427/CH18/EX18.8/18_8.sce
blob: 21431e5a13522552bcd90c6c009f1e68e08f045e (plain)
1
2
3
4
5
6
7
8
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);