Closed
Description
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.
Metadata
Metadata
Assignees
Labels
No labels