gpvs() computes saturation vapor pressure table.
Compute saturation vapor pressure table as a function of temperature for the table lookup function FPVS. Exact saturation vapor pressures are calculated in subprogram FPVSX. The current implementation computes a table with a length of 7501 for temperatures ranging from 180.0 to 330.0 Kelvin.
- Parameters
-
[out] | pvu | real (km) potential vorticity (10**-6*K*m**2/kg/s). |
Program History Log
Date | Programmer | Comments |
1982-12-30 | N Phillips | Initial |
1991-05-07 | Mark Iredell | Made into inlinable function |
1994-12-30 | Mark Iredell | Expand table |
1996-02-19 | Hong | Ice effect |
- Note
- Lookup tables for the saturation vapor pressure w/r/t water & ice.
- Author
- N Phillips W/NP2
- Date
- 1982-12-30
Definition in file GPVS.f.
real function FPVSX |
( |
real |
T | ) |
|
fpvsx() computes saturation vapor pressure.
Exactly compute saturation vapor pressure from temperature. The water model assumes a perfect gas, constant specific heats for gas and liquid, and neglects the volume of the liquid. The model does account for the variation of the latent heat of condensation with temperature. The ice option is not included. The Clausius-Clapeyron equation is integrated from the triple point To get the formula
PVS=PSATK*(TR**XA)*exp(XB*(1.-TR))
where TR is TTP/T and other values are physical constants This function should be expanded inline in the calling routine.
- Parameters
-
[in] | T | real temperature in Kelvin. |
[out] | FPVSX | real saturation vapor pressure in kilopascals (CB). |
Program History Log
Date | Programmer | Comments |
1982-12-30 | N Phillips | Initial |
1991-05-07 | Mark Iredell | Made into inlinable function |
1994-12-30 | Mark Iredell | Exact computation |
1996-02-19 | Hong | Ice effect |
- Author
- N Phillips W/NP2
- Date
- 1982-12-30
Definition at line 121 of file GPVS.f.