You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

CLM time-averaging bug affecting MEGAN emissions

8 July 2022: A bug has been identified in CLM that probably has affected most MUSICAv0 simulations.  This bug results in erroneous calculations of the time-averaged (1-day, 10-days) temperature, photon flux, and other variables, that are used in the MEGAN biogenic emissions calculation (and elsewhere in CLM).  See discussion at the CTSM github issue #1789

In general Isoprene emissions are reduced with bug fix.


Advection error in SE

Spurious vertical transport was found over steep topography.  The issue is described in this github issue

The correction for current development tags is provided in CAM github issue #633

For CESM2.2.0 source code the correction is, in src/dynamics/se/dycore/prim_advance_mod.F90 (at l.578), replace:

                 elem(ie)%derived%dpdiss_ave(i,j,k)=elem(ie)%derived%dpdiss_ave(i,j,k)+&
                      rhypervis_subcycle*eta_ave_w*elem(ie)%state%dp3d(i,j,k,nt)

with:

                 elem(ie)%derived%dpdiss_ave(i,j,k)=elem(ie)%derived%dpdiss_ave(i,j,k)+&  
                      rhypervis_subcycle*eta_ave_w*(elem(ie)%state%dp3d(i,j,k,nt)-dp3d_ref(i,j,k,ie))




  • No labels