blob: 258d71a1ed50633a3432d816af5340f83a6063ea (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
clc
//initialization of varaibles
HV=4344 //B/lb
xC=56 //lb
R=1.986
T=530 //R
MC=56 //g/mol
//calculations
HR=xC*HV
Eb=-HR -R*T*(2-3)
HV=-Eb/MC
//results
printf("COnstant volume heating value = %d B/lb ",HV)
|