/[lmdze]/trunk/phylmd/indicesol.f90
ViewVC logotype

Diff of /trunk/phylmd/indicesol.f90

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

trunk/libf/phylmd/indicesol.f90 revision 3 by guez, Wed Feb 27 13:16:39 2008 UTC trunk/phylmd/indicesol.f90 revision 328 by guez, Thu Jun 13 14:40:06 2019 UTC
# Line 3  module indicesol Line 3  module indicesol
3    implicit none    implicit none
4    
5    INTEGER, parameter:: nbsrf=4    INTEGER, parameter:: nbsrf=4
6    INTEGER, parameter:: is_oce=3 ! ocean  
   INTEGER, parameter:: is_sic = 4 ! sea ice  
7    INTEGER, parameter:: is_ter = 1 ! land    INTEGER, parameter:: is_ter = 1 ! land
8      ! Note: the first surface type must be land. pbl_surface must call
9      ! the land interface first because the ocean needs the run-off.
10    
11    INTEGER, parameter:: is_lic = 2 ! land ice    INTEGER, parameter:: is_lic = 2 ! land ice
12    REAL, parameter:: epsfra = 1E-05  
13      INTEGER, parameter:: is_oce = 3 ! ocean
14      ! Ocean must be before sea ice.
15      
16      INTEGER, parameter:: is_sic = 4 ! sea ice
17    
18      REAL, parameter:: epsfra = 1E-5
19    CHARACTER(len=*), parameter:: clnsurf(nbsrf) = (/'ter', 'lic', 'oce', 'sic'/)    CHARACTER(len=*), parameter:: clnsurf(nbsrf) = (/'ter', 'lic', 'oce', 'sic'/)
20    
21  end module indicesol  end module indicesol

Legend:
Removed from v.3  
changed lines
  Added in v.328

  ViewVC Help
Powered by ViewVC 1.1.21