blob: ba754a499af736c1a122dcd26b068d554d8a34b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
clc
//initialization of variables
T=100+460 //R
rh=0.6
//calculations
disp("From steam tables,")
Pg=0.9492 //lb/in^2
Pwv=rh*Pg
T=83 //F
//results
printf("Dew point is obtained from saturation pressure table and is equal to %d F",T)
|