Ignore:
Timestamp:
May 15, 2020, 3:24:17 PM (5 years ago)
Author:
mvals
Message:

Mars GCM:
Follow-up of the last commit for the transport of the isotopic ratio: cleaning to help the user:
-initracer.F: hdo must be defined as an isotope (meaning its "father" has to be precised in traceur.def) and must be placed at the end of the list of
tracers in traceur.def.
-/deftank/traceur.def.isotopes: writing of traceur.def in the case of hdo=true has been simplified to match both the 3D and the 1D simulations.
-simpleclouds.F,hdo_surfex_mod.F,physiq_mod.F: thresholds of 1.e-16 have been replaced by the variable qperemin defined in tracer_mod.F.
MV

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.MARS/libf/phymars/hdo_surfex_mod.F

    r2316 r2324  
    1111
    1212      use tracer_mod, only: igcm_h2o_vap, igcm_h2o_ice,
    13      &                      igcm_hdo_vap, igcm_hdo_ice
    14 
     13     &                      igcm_hdo_vap, igcm_hdo_ice,
     14     &                      qperemin
    1515      use surfdat_h, only: watercaptag
    1616      use geometry_mod, only: longitude_deg,latitude_deg
     
    7070            if (h2oflux(ig).le.0.) then
    7171
    72                if (pqsurf(ig,igcm_h2o_ice).gt.1e-16) then
     72               if (pqsurf(ig,igcm_h2o_ice).gt.qperemin) then
    7373                pdqsdif(ig,igcm_hdo_ice) =
    7474     &            pdqsdif(ig,igcm_h2o_ice)*
     
    111111               endif
    112112
    113                if (old_h2o_vap(ig).gt.1.e-16) then
     113               if (old_h2o_vap(ig).gt.qperemin) then
    114114                         pdqsdif(ig,igcm_hdo_ice)=
    115115     &                      alpha_c(ig)*pdqsdif(ig,igcm_h2o_ice)*
Note: See TracChangeset for help on using the changeset viewer.