/[lmdze]/trunk/phylmd/Interface_surf/conf_interface.f
ViewVC logotype

Annotation of /trunk/phylmd/Interface_surf/conf_interface.f

Parent Directory Parent Directory | Revision Log Revision Log


Revision 301 - (hide annotations)
Thu Aug 2 17:23:07 2018 UTC (5 years, 10 months ago) by guez
File size: 759 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 297 MODULE conf_interface_m
2 guez 3
3 guez 14 ! From phylmd/interface_surf.F90, version 1.8 2005/05/25 13:10:09
4 guez 38 ! L. Fairhead, LMD, february 2000
5 guez 3
6     IMPLICIT none
7    
8 guez 301 REAL, save, protected:: tau_calv
9 guez 72 ! temps de relaxation pour la fonte des glaciers, en jours
10    
11     contains
12    
13     subroutine conf_interface
14    
15     ! From phylmd/conf_phys.F90, version 1.7 2005/07/05 07:21:23
16    
17     ! Configuration de l'interace atm/surf
18    
19     use unit_nml_m, only: unit_nml
20    
21     namelist /conf_interface_nml/ tau_calv
22    
23     !------------------------------------------------------
24    
25     tau_calv = 360.*10.
26    
27     print *, "Enter namelist 'conf_interface_nml'."
28     read(unit=*, nml=conf_interface_nml)
29     write(unit_nml, nml=conf_interface_nml)
30    
31     end subroutine conf_interface
32    
33 guez 297 END MODULE conf_interface_m

  ViewVC Help
Powered by ViewVC 1.1.21