blob: c6c94db832708a39453bc04f2cdf15150237f9c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
clear;
clc;
// Example: 4.9
// Page: 129
printf("Example: 4.9 - Page: 129\n\n");
// Solution
//*****Data*****//
T1 = 273;// [K]
T2 = 253;// [K]
deltaH_273 = 1440;// [cal/mol]
Cp = 8.7;// [cal/mol]
//**************//
deltaH_253 = deltaH_273 + Cp*(T2 - T1);// [cal/mol]
printf("Laten heat of ice at -20 OC is %d cal/mol\n",deltaH_253);
|