source: trunk/LMDZ.MARS/libf/phymars/co2sat.F @ 2616

Last change on this file since 2616 was 2362, checked in by cmathe, 4 years ago

New working version of CO2 microphysics.

  • Property svn:executable set to *
File size: 1.3 KB
Line 
1c=======================================================================
2c     SUBROUTINE co2sat
3c-----------------------------------------------------------------------
4c     Aim:
5c     ----
6c     Compute saturated steam pressure (from James et al, 1992)
7c=======================================================================
8      subroutine co2sat(naersize, t, psat)
9     
10      implicit none
11c-----------------------------------------------------------------------
12c     VARIABLES
13c-----------------------------------------------------------------------
14c     Inputs:
15c     -------
16      integer, intent(in) ::
17     &   naersize ! dimension of tables t and psat
18     
19      real, intent(in) ::
20     &   t(naersize) ! temperature table
21
22c     Output:
23c     -------
24      real, intent(out) ::
25     &   psat(naersize) ! Saturated steam pressure (Pa)
26
27c     Local:
28c     ------
29      integer ::
30     &   i ! loop on naersize
31c=======================================================================
32c===== BEGIN
33c=======================================================================
34      do i = 1, naersize
35        psat(i) = 1.382 * 1e12 * exp(-3182.48/t(i))
36      end do
37c=======================================================================
38c===== END
39c=======================================================================
40      RETURN
41      END
42
Note: See TracBrowser for help on using the repository browser.