source: LMDZ6/trunk/libf/phylmd/surface_data.F90 @ 3324

Last change on this file since 3324 was 3319, checked in by jyg, 7 years ago

Adding missing IMPLICIT NONE

  • 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:keywords set to Id
File size: 990 bytes
RevLine 
[781]1!
[2538]2! $Id: surface_data.F90 3319 2018-04-30 15:45:16Z musat $
[781]3!
4MODULE surface_data
5
[3319]6  IMPLICIT NONE
7
[781]8  REAL, PARAMETER        :: calice=1.0/(5.1444e+06*0.15)
9  REAL, PARAMETER        :: tau_gl=86400.*5.
10  REAL, PARAMETER        :: calsno=1./(2.3867e+06*.15)
11 
[996]12  LOGICAL, SAVE          :: ok_veget      ! true for use of vegetation model ORCHIDEE
[781]13  !$OMP THREADPRIVATE(ok_veget)
[2912]14
15  CHARACTER(len=10), SAVE :: type_veget   ! orchidee/y/bucket/n/betaclim
16  !$OMP THREADPRIVATE(type_veget)
17
[1865]18  LOGICAL, SAVE          :: ok_snow       ! true for coupling to snow model SISVAT
19  !$OMP THREADPRIVATE(ok_snow)
[781]20
[996]21  CHARACTER(len=6), SAVE :: type_ocean    ! force/slab/couple
22  !$OMP THREADPRIVATE(type_ocean)
23
24  ! if type_ocean=couple : version_ocean=opa8 ou nemo
[2057]25  ! if type_ocean=slab   : version_ocean=sicOBS or sicINT or sicNO
[996]26  CHARACTER(len=6), SAVE :: version_ocean
27  !$OMP THREADPRIVATE(version_ocean)
28
[2075]29  ! Pas de temps couplage atm/oce (en secondes)
30  REAL, SAVE             :: t_coupl
31  !$OMP THREADPRIVATE(t_coupl)
32
[781]33END MODULE surface_data
Note: See TracBrowser for help on using the repository browser.