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

Annotation of /trunk/phylmd/indicesol.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 301 - (hide annotations)
Thu Aug 2 17:23:07 2018 UTC (5 years, 9 months ago) by guez
File size: 550 byte(s)
Move the call to conf_interface up to physiq, so there is no need to
test first call inside pbl_surface for this.

run_off_lic in fonte_neige was computed but not used. Pass it up to
pbl_surface so we can output it (following LMDZ).

Simplify the logic in interfsur_lim so we do not need debut.

Remove the tests on the order of surface types in interfsurf_hq. Just
add comments in indicesol.

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