Ignore:
Timestamp:
Feb 8, 2017, 4:36:25 PM (8 years ago)
Author:
emillour
Message:

Mars GCM:

  • Added possibility to run with an Helium "he" tracer (to be initialized at constant value of 3.6e-7 kg/kg_air, i.e. the 4ppm of Krasnopolsky 1996 EUVE satellite, using newstart).
  • corrected case for CH4 in aeronomars/photochemistry.F (was using undefined indexes when there is no CH4).
  • updated aki/cpi coefficients for Argon used to compute mean atmospheric Cp and thermal conductivity in aeronomars/concentrations.F

JYC+EM

Location:
trunk/LMDZ.MARS/libf/phymars
Files:
1 deleted
3 edited

Legend:

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

    r1621 r1660  
    8888      igcm_no2=0
    8989      igcm_n2d=0
     90      igcm_he=0
    9091      igcm_co2plus=0
    9192      igcm_oplus=0
     
    238239          count=count+1
    239240        endif
     241        if (noms(iq).eq."he") then
     242          igcm_he=iq
     243          mmol(igcm_he)=4.
     244          count=count+1
     245        endif
    240246        if (noms(iq).eq."co2plus") then
    241247          igcm_co2plus=iq
  • trunk/LMDZ.MARS/libf/phymars/physiq_mod.F

    r1649 r1660  
    2020     &                      rho_ice_co2,nuiceco2_sed,nuiceco2_ref,
    2121     &                      igcm_dust_mass, igcm_dust_number, igcm_h2o2,
    22      &                      nuice_ref, rho_ice, rho_dust, ref_r0
     22     &                      nuice_ref, rho_ice, rho_dust, ref_r0,
     23     &                      igcm_he
    2324      use comsoil_h, only: inertiedat, ! soil thermal inertia
    2425     &                     tsoil, nsoilmx ! number of subsurface layers
     
    23362337         endif ! of if (tracer.and.(igcm_co2.ne.0))
    23372338
     2339
     2340        ! Output He tracer, if there is one
     2341        if (tracer.and.(igcm_he.ne.0)) then
     2342          call WRITEDIAGFI(ngrid,"he","helium mass mixing ratio",
     2343     &                     "kg/kg",3,zq(1,1,igcm_he))
     2344          vmr=zq(1:ngrid,1:nlayer,igcm_he)
     2345     &       *mmean(1:ngrid,1:nlayer)/mmol(igcm_he)
     2346          call WRITEDIAGFI(ngrid,'vmr_he','helium vol. mixing ratio',
     2347     &                       'mol/mol',3,vmr)
     2348        endif
     2349
    23382350c        ----------------------------------------------------------
    23392351c        Outputs of the water cycle
  • trunk/LMDZ.MARS/libf/phymars/tracer_mod.F90

    r1655 r1660  
    7373      integer,save :: igcm_no2
    7474      integer,save :: igcm_n2d
     75      integer,save :: igcm_he
    7576      integer,save :: igcm_ch4
    7677      ! Ions
Note: See TracChangeset for help on using the changeset viewer.