Changeset 2144 for trunk/LMDZ.GENERIC/libf/phystd/thermcell_mod.F90
- Timestamp:
- Jun 20, 2019, 7:07:28 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.GENERIC/libf/phystd/thermcell_mod.F90
r2143 r2144 6 6 ! Flags for computations 7 7 ! 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) 9 10 10 11 ! Physical parameters … … 69 70 RD = r 70 71 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 71 82 print *, 'Plume aspect ratio ?' 72 83 r_aspect_thermals = 1.
Note: See TracChangeset
for help on using the changeset viewer.