blob: 2591a82e39c98cd29e9dab57a1cec08e4cd3a1b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
////Variable Declaration
T = 300.0 //Temperature of Hg, K
beta = 18.1e-4 //Thermal exapansion coefficient for Hg, /K
kapa = 3.91e-6 //Isothermal compressibility for Hg, /Pa
M = 0.20059 //Molecular wt of Hg, kg/mol
rho = 13534 //Density of mercury, kg/m3
Cpm = 27.98 //Experimental Molar specif heat at const pressure for mercury, J/(mol.K)
//Calculations
Vm = M/rho
DCpmCv = T*Vm*beta**2/kapa
Cvm = Cpm - DCpmCv
//Results
printf("\n Difference in molar specific heats \nat constant volume and constant pressure %4.2e J/(mol.K)",DCpmCv)
printf("\n Molar Specific heat of Hg at const. volume is %4.2f J/(mol.K)",Cvm)
|