You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The following code in the current MPAS/NoahMP initialization part is wrong:
mpas_noahmp%sh2o(i,ns) = sh2o(ns,i)
mpas_noahmp%smois(i,ns) = smois(ns,i)
mpas_noahmp%tslb(i,ns) = tslb(ns,i)
The following code in the current MPAS/NoahMP initialization part is wrong:
mpas_noahmp%sh2o(i,ns) = sh2o(ns,i)
mpas_noahmp%smois(i,ns) = smois(ns,i)
mpas_noahmp%tslb(i,ns) = tslb(ns,i)
The code is here:
MPAS-Model/src/core_atmosphere/physics/mpas_atmphys_lsm_noahmpinit.F
Lines 422 to 424 in 41e9a3f
The current code leads to a wrongly initialized soil temperature and moisture field.
The correct code should be as follows:
sh2o(ns,i) = mpas_noahmp%sh2o(i,ns)
smois(ns,i) = mpas_noahmp%smois(i,ns)
tslb(ns,i) = mpas_noahmp%tslb(i,ns)
This bug needs to be fixed as soon as possible.
The text was updated successfully, but these errors were encountered: