Changeset 1927


Ignore:
Timestamp:
May 29, 2018, 12:53:32 AM (6 years ago)
Author:
jvatant
Message:

Correct a mistake in eddy diffusion profiles in calchim
--JVO

Location:
trunk/LMDZ.TITAN
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LMDZ.TITAN/README

    r1926 r1927  
    14441444+ Add supplementary diagnostics outputs for microphysics ( precip, flux, rc ... ) ( new muphy_diag.F90 module )
    14451445+ Correct the outputs of microphys tracers to be in X/m-3 to be comparable to "standard values"
     1446+ Correct outputs of chemical tracers to be in mol/mol
    14461447
    14471448+ Also update the deftank callphys.def with past revs modifs of microphysics
  • trunk/LMDZ.TITAN/libf/phytitan/calchim.F90

    r1924 r1927  
    315315     ! 1E6 at 300 km ~ 10-1 mbar
    316316        IF     ( logp.ge.1.0 .and. logp.le.4.0 ) THEN
    317               kedd(l) = 10.**(6.0+1.1*(logp-1.0))
     317              kedd(l) = 10.**(6.0+1.3*(logp-1.0)/3.0)
    318318     ! 2E7 at 600 km ~ 10-4 mbar
    319319        ELSEIF ( logp.gt.4.0 .and. logp.le.6.0 ) THEN
     
    323323             kedd(l) = 1.e8
    324324        ENDIF
     325        print *, l, kedd(l)
    325326     ENDDO
    326327     
     
    329330        temp1   = ( log10(press_c(l)/press_c(klev-15)) ) / ( log10(press_c(klev+1)/press_c(klev-15)) )
    330331        kedd(l) = 10.**( 3.0 + log10(kedd(klev+1)/1.e3) * temp1 )
     332        print *, l, kedd(l)
    331333     ENDDO
    332334     
  • trunk/LMDZ.TITAN/libf/phytitan/physiq_mod.F90

    r1926 r1927  
    15941594      if (callchim) then
    15951595        do iq=1,nkim
    1596           CALL send_xios_field(cnames(iq),zq(:,:,iq+nmicro)/rat_mmol(iq+nmicro))
     1596          CALL send_xios_field(cnames(iq),zq(:,:,iq+nmicro)/rat_mmol(iq+nmicro)) ! mol/mol
    15971597        enddo
    15981598      endif
Note: See TracChangeset for help on using the changeset viewer.