source: LMDZ5/trunk/libf/phylmd/surface_data.F90 @ 2057

Last change on this file since 2057 was 2057, checked in by Ehouarn Millour, 10 years ago

Preparatory stuff to fix and improve the slab ocean model.
FC

  • Property copyright set to
    Name of program: LMDZ
    Creation date: 1984
    Version: LMDZ5
    License: CeCILL version 2
    Holder: Laboratoire de m\'et\'eorologie dynamique, CNRS, UMR 8539
    See the license file in the root directory
  • Property svn:eol-style set to native
  • Property svn:executable set to *
  • Property svn:keywords set to Author Date Id Revision
File size: 934 bytes
Line 
1!
2! $Header$
3!
4MODULE surface_data
5
6  REAL, PARAMETER        :: calice=1.0/(5.1444e+06*0.15)
7  REAL, PARAMETER        :: tau_gl=86400.*5.
8  REAL, PARAMETER        :: calsno=1./(2.3867e+06*.15)
9  REAL, PARAMETER        :: t_freeze=271.35
10  REAL, PARAMETER        :: t_melt=273.15
11 
12  LOGICAL, SAVE          :: ok_veget      ! true for use of vegetation model ORCHIDEE
13  CHARACTER(len=10), SAVE :: type_veget    ! orchidee/y/bucket/n/betaclim
14  !$OMP THREADPRIVATE(ok_veget)
15  ! Martin
16  LOGICAL, SAVE          :: ok_snow       ! true for coupling to snow model SISVAT
17  !$OMP THREADPRIVATE(ok_snow)
18  ! Martin
19
20  CHARACTER(len=6), SAVE :: type_ocean    ! force/slab/couple
21  !$OMP THREADPRIVATE(type_ocean)
22
23  ! if type_ocean=couple : version_ocean=opa8 ou nemo
24  ! if type_ocean=slab   : version_ocean=sicOBS or sicINT or sicNO
25  CHARACTER(len=6), SAVE :: version_ocean
26  !$OMP THREADPRIVATE(version_ocean)
27
28END MODULE surface_data
Note: See TracBrowser for help on using the repository browser.