Changeset 1927
- Timestamp:
- May 29, 2018, 12:53:32 AM (6 years ago)
- Location:
- trunk/LMDZ.TITAN
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/LMDZ.TITAN/README
r1926 r1927 1444 1444 + Add supplementary diagnostics outputs for microphysics ( precip, flux, rc ... ) ( new muphy_diag.F90 module ) 1445 1445 + 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 1446 1447 1447 1448 + Also update the deftank callphys.def with past revs modifs of microphysics -
trunk/LMDZ.TITAN/libf/phytitan/calchim.F90
r1924 r1927 315 315 ! 1E6 at 300 km ~ 10-1 mbar 316 316 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) 318 318 ! 2E7 at 600 km ~ 10-4 mbar 319 319 ELSEIF ( logp.gt.4.0 .and. logp.le.6.0 ) THEN … … 323 323 kedd(l) = 1.e8 324 324 ENDIF 325 print *, l, kedd(l) 325 326 ENDDO 326 327 … … 329 330 temp1 = ( log10(press_c(l)/press_c(klev-15)) ) / ( log10(press_c(klev+1)/press_c(klev-15)) ) 330 331 kedd(l) = 10.**( 3.0 + log10(kedd(klev+1)/1.e3) * temp1 ) 332 print *, l, kedd(l) 331 333 ENDDO 332 334 -
trunk/LMDZ.TITAN/libf/phytitan/physiq_mod.F90
r1926 r1927 1594 1594 if (callchim) then 1595 1595 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 1597 1597 enddo 1598 1598 endif
Note: See TracChangeset
for help on using the changeset viewer.