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

Diff of /trunk/phylmd/indicesol.f

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

trunk/phylmd/indicesol.f90 revision 76 by guez, Fri Nov 15 18:45:49 2013 UTC trunk/phylmd/indicesol.f revision 301 by guez, Thu Aug 2 17:23:07 2018 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.76  
changed lines
  Added in v.301

  ViewVC Help
Powered by ViewVC 1.1.21