Ignore:
Timestamp:
Jun 20, 2019, 7:07:28 PM (5 years ago)
Author:
aboissinot
Message:

Thermal plume model parameters are now set in callphys.def and (re)add flag to choose between thermcell_dv2 or thermcell_dq to mix horizontal momentum.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.GENERIC/libf/phystd/thermcell_mod.F90

    r2143 r2144  
    66! Flags for computations
    77                                                 !  default
    8       INTEGER,SAVE :: dqimpl                     !  1        flag for thermcell_dq version (1 : implicit scheme || 0 : explicit scheme)
     8      LOGICAL,SAVE :: dqimpl                     !  .true.   Flag for thermcell_dq version (True : implicit scheme || False : explicit scheme)
     9      LOGICAL,SAVE :: dvimpl                     !  .false.  Flag for specific u, v mixing (True : thermcell_dv2 || False : thermcell_dq)
    910     
    1011! Physical parameters
     
    6970         RD = r
    7071         
     72         print *, 'Implicit mixing scheme ?'
     73         dqimpl = .true.
     74         call getin_p('dqimpl', dqimpl)
     75         print *, 'dqimpl = ', dqimpl
     76         
     77         print *, 'Use specific horizontal momentum scheme ?'
     78         dvimpl = .false.
     79         call getin_p('dvimpl', dvimpl)
     80         print *, 'dvimpl = ', dvimpl
     81         
    7182         print *, 'Plume aspect ratio ?'
    7283         r_aspect_thermals = 1.
Note: See TracChangeset for help on using the changeset viewer.