source: trunk/LMDZ.GENERIC/libf/phystd/watersat.F90 @ 374

Last change on this file since 374 was 253, checked in by emillour, 13 years ago

Generic GCM

  • Massive update to version 0.7

EM+RW

File size: 1.1 KB
Line 
1subroutine watersat(T,p,qsat)
2
3  use watercommon_h, only: To, epsi
4  implicit none
5
6!==================================================================
7!     Purpose
8!     -------
9!     Compute the water mass mixing ratio at saturation (kg/kg)
10!     for a given pressure (Pa) and temperature (K)
11!     A replacement for the old watersat.F in the Martian GCM.
12!     Based on FCTTRE.h in the LMDTERRE model.
13!
14!     Authors
15!     -------
16!     Robin Wordsworth (2010)
17!
18!==================================================================
19
20!   input
21  real T, p
22 
23!   output
24  real qsat
25
26! checked vs. NIST data 22/06/2010 by RW.
27! / by p gives partial pressure
28! x by epsi converts to mass mixing ratio
29
30  if (T.lt.To) then ! solid / vapour
31     qsat = 100.0 * epsi * 10**(2.07023 - 0.00320991             &
32          * T - 2484.896 / T + 3.56654 * alog10(T))
33  else                 ! liquid / vapour
34     qsat = 100.0 * epsi * 10**(23.8319 - 2948.964 / T - 5.028  &
35          * alog10(T) - 29810.16 * exp( -0.0699382 * T)  &
36          + 25.21935 * exp(-2999.924/T))
37  endif
38  qsat=qsat/p
39
40  return
41end subroutine watersat
Note: See TracBrowser for help on using the repository browser.