Replies: 1 comment 1 reply
-
@RAbolafiaRosenzweig @tslin2 @barlage Could you please take a look at this? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Displacement height (ZeroPlaneDispSfc) for a vegetation tile is determined as 65% of the canopy top height using the following expression:
ZeroPlaneDispSfc = 0.65 * HeightCanopyTop
noahmp/src/GroundRoughnessPropertyMod.F90
Line 63 in fa2d209
The reference height from the ground (RefHeightAboveGrd) is then calculated using:
RefHeightAboveGrd = max(ZeroPlaneDispSfc, HeightCanopyTop) + RefHeightAboveSfc
noahmp/src/GroundRoughnessPropertyMod.F90
Line 79 in fa2d209
Here, since ZeroPlaneDispSfc is defined as 65% of HeightCanopyTop, the expression max(ZeroPlaneDispSfc, HeightCanopyTop) will always be equal to HeightCanopyTop when there is no snow layer. Thus, the above formula can be simplified as follows in snow-free conditions:
RefHeightAboveGrd = HeightCanopyTop + RefHeightAboveSfc
Issue for Discussion
As I understand it, if we presume the bottom end of the wind log-profile is at the displacement height, the above formula needs to be modified as follows:
RefHeightAboveGrd = ZeroPlaneDispSfc + RefHeightAboveSfc
Could you please review this potential inconsistency and proposed code modification, and share your feedback?
Beta Was this translation helpful? Give feedback.
All reactions