Changeset 553


Ignore:
Timestamp:
09/18/17 15:10:09 (7 years ago)
Author:
dubos
Message:

trunk : backported commit 534 from devel

File:
1 edited

Legend:

Unmodified
Added
Removed
  • codes/icosagcm/trunk/src/base/earth_const.f90

    r548 r553  
    1919  REAL(rstd),SAVE :: mu                 ! molar mass of the atmosphere 
    2020 
    21   INTEGER, PARAMETER,PUBLIC :: thermo_theta=1, thermo_entropy=2, & 
    22        thermo_moist=3, thermo_moist_debug=10, thermo_dry=4, thermo_fake_moist=5  
     21  INTEGER, PARAMETER,PUBLIC :: thermo_none=-99, thermo_theta=1, thermo_entropy=2, & 
     22       thermo_moist=3, thermo_boussinesq=4, thermo_dry=10, thermo_fake_moist=11, thermo_moist_debug=100 
    2323  INTEGER, PUBLIC :: caldyn_thermo, physics_thermo 
    2424  !$OMP THREADPRIVATE(caldyn_thermo)  
     
    2626 
    2727  LOGICAL, SAVE :: boussinesq, hydrostatic 
     28  !$OMP THREADPRIVATE(boussinesq) 
     29  !$OMP THREADPRIVATE(hydrostatic)  
    2830 
    2931CONTAINS 
     
    4850    boussinesq=.FALSE. 
    4951    CALL getin("boussinesq",boussinesq)   
     52    PRINT *, "Note : key boussinesq is deprecated, use thermo=boussinesq instead" 
     53    IF(boussinesq) STOP 
    5054    hydrostatic=.TRUE. 
    5155    CALL getin("hydrostatic",hydrostatic)   
Note: See TracChangeset for help on using the changeset viewer.