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

Annotation of /trunk/phylmd/indicesol.f90

Parent Directory Parent Directory | Revision Log Revision Log


Revision 328 - (hide annotations)
Thu Jun 13 14:40:06 2019 UTC (4 years, 11 months ago) by guez
File size: 550 byte(s)
Change all `.f` suffixes to `.f90`. (The opposite was done in revision
82.)  Because of change of philosopy in GNUmakefile: we already had a
rewritten rule for `.f`, so it does not make the makefile longer to
replace it by a rule for `.f90`. And it spares us options of
makedepf90 and of the compiler. Also we prepare the way for a simpler
`CMakeLists.txt`.

1 guez 3 module indicesol
2    
3     implicit none
4    
5     INTEGER, parameter:: nbsrf=4
6 guez 101
7 guez 3 INTEGER, parameter:: is_ter = 1 ! land
8 guez 301 ! 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 guez 3 INTEGER, parameter:: is_lic = 2 ! land ice
12 guez 301
13 guez 101 INTEGER, parameter:: is_oce = 3 ! ocean
14 guez 301 ! Ocean must be before sea ice.
15    
16 guez 101 INTEGER, parameter:: is_sic = 4 ! sea ice
17    
18     REAL, parameter:: epsfra = 1E-5
19 guez 3 CHARACTER(len=*), parameter:: clnsurf(nbsrf) = (/'ter', 'lic', 'oce', 'sic'/)
20    
21     end module indicesol

  ViewVC Help
Powered by ViewVC 1.1.21