WRF
WRF copied to clipboard
opposite sign of ground heat flux in urban models with Noah-MP land surface model
https://github.com/NCAR/hrldas/issues/114#issue-1931501060
The ground heat flux in Noah-MP is downwards positive from surface, but it is downwards negative from surface in Noah land surface model (LSM).
To keep the same direction of ground heat flux between urban models (SLUCM, BEP, or BEM) and the land surface model (Noah or Noah-MP) is required to calculate surface energy balance at the grid mean level.
In Noah LSM, the ground heat flux direction is the same as urban models, but differ in Noah-MP.
To make the same direction using SLUCM with Noah-MP LSM at the grid mean level.
https://github.com/NCAR/noahmp/blob/981d4f859ce6c64213d38a783654c05b47b3485e/drivers/wrf/module_sf_noahmpdrv.F#L3508
revise to GRDFLX(I,J) = FRC_URB2D(I,J) * (-1.0 * G_URB) + (1-FRC_URB2D(I,J)) * GRDFLX(I,J) ![W/m/m]
and for BEP, BEM
https://github.com/NCAR/noahmp/blob/981d4f859ce6c64213d38a783654c05b47b3485e/drivers/wrf/module_sf_noahmpdrv.F#L3737
revise to grdflx(i,j) = (1.-frc_urb2d(i,j)) * grdflx_rural(i,j)+ frc_urb2d(i,j) * grdflx_urb(i,j) * -1.0
@cenlinhe Would you like to comment on this post?
Yes, this is very likely a bug. I will look into more detail and try to fix it in the next 1~2 weeks.
I confirm that this is a bug: https://github.com/NCAR/hrldas/issues/114#issue-1931501060 I have fixed it in the offline Noah-MP and urban model systems. I am going to submit a PR for WRF system bug fix.