Ignore:
Timestamp:
Jan 31, 2022, 9:20:17 PM (2 years ago)
Author:
dcugnet
Message:
  • Fix for unadvected tracers (iadv==0)
  • The key %isH2Ofamily, from the derived type "trac_type", is replaced with the more general

key %isInPhysics, which is TRUE for tracers both in "qx" and "tr_seri".

Currently, FALSE for tracers descending on H2O (isotopes and tagging tracers included). Could be set to FALSE
for interactive CO2 (type_trac=='inco') or ice supersaturated cloud content (tranfered to "rneb_seri")

File:
1 edited

Legend:

Unmodified
Added
Removed
  • LMDZ6/trunk/libf/phylmdiso/physiq_mod.F90

    r4065 r4071  
    24742474       itr = 0
    24752475       DO iq = 1, nqtot
    2476          IF(tracers(iq)%isH2Ofamily) CYCLE
     2476         IF(.NOT.tracers(iq)%isInPhysics) CYCLE
    24772477         itr = itr+1
    24782478!#ifdef ISOVERIF
     
    24982498       itr = 0
    24992499       do iq = 1, nqtot
    2500          IF(tracers(iq)%isH2Ofamily) CYCLE
     2500         IF(.NOT.tracers(iq)%isInPhysics) CYCLE
    25012501         itr = itr+1
    25022502         tr_ancien(:,:,itr)=tr_seri(:,:,itr)       
     
    65316531    itr = 0
    65326532    DO iq = 1, nqtot
    6533        IF(tracers(iq)%isH2Ofamily) CYCLE
     6533       IF(.NOT.tracers(iq)%isInPhysics) CYCLE
    65346534       itr = itr+1
    65356535       DO  k = 1, klev
Note: See TracChangeset for help on using the changeset viewer.