blob: 30f9f0d1d0ed1bdcef33a0377a421850c7e1a5d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// Example 10_2
clc;funcprot(0);
// Given data
T=400;// °C
P=4;// MPa
// Calculation
// From steam tables
dh=3330-3092;// kJ/kg
ds=6.937-6.583;// kJ/kg.K
dhbyds=dh/ds;// K
printf("\n(dh/ds)_P=%3.0f K or %3.0f°C",dhbyds,dhbyds-273);
|