Changeset 3180 for LMDZ6/trunk/libf
- Timestamp:
- Feb 3, 2018, 12:02:21 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
LMDZ6/trunk/libf/phylmd/physiq_mod.F90
r3179 r3180 896 896 LOGICAL, SAVE :: ok_bug_cv_trac = .TRUE. 897 897 !$OMP THREADPRIVATE(ok_bug_cv_trac) 898 ! 899 ! Logical switch to a bug : changing wake_deltat when thermals are active 900 ! even when there are no wakes. 901 LOGICAL, SAVE :: ok_bug_split_th = .TRUE. 902 !$OMP THREADPRIVATE(ok_bug_split_th) 898 903 899 904 ! … … 1280 1285 CALL getin_p('ok_bad_ecmwf_thermo',ok_bad_ecmwf_thermo) 1281 1286 CALL getin_p('ok_bug_cv_trac',ok_bug_cv_trac) 1287 CALL getin_p('ok_bug_split_th',ok_bug_split_th) 1282 1288 fl_ebil = 0 ! by default, conservation diagnostics are desactivated 1283 1289 CALL getin_p('fl_ebil',fl_ebil) … … 3117 3123 ENDDO 3118 3124 ! 3119 !! CALL add_wake_tend & 3120 !! (d_deltat_the, d_deltaq_the, dsig0, ddens0, wkoccur1, 'the', abortphy) 3121 CALL add_wake_tend & 3122 (d_deltat_the, d_deltaq_the, dsig0, ddens0, wake_k, 'the', abortphy) 3125 IF (ok_bug_split_th) THEN 3126 CALL add_wake_tend & 3127 (d_deltat_the, d_deltaq_the, dsig0, ddens0, wkoccur1, 'the', abortphy) 3128 ELSE 3129 CALL add_wake_tend & 3130 (d_deltat_the, d_deltaq_the, dsig0, ddens0, wake_k, 'the', abortphy) 3131 ENDIF 3123 3132 call prt_enerbil('the',itap) 3124 3133 !
Note: See TracChangeset
for help on using the changeset viewer.