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

Contents of /trunk/phylmd/indicesol.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 301 - (show annotations)
Thu Aug 2 17:23:07 2018 UTC (5 years, 8 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 module indicesol
2
3 implicit none
4
5 INTEGER, parameter:: nbsrf=4
6
7 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
12
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'/)
20
21 end module indicesol

  ViewVC Help
Powered by ViewVC 1.1.21