Replies: 4 comments 4 replies
-
|
@RAbolafiaRosenzweig @tslin2 @barlage Could you please take a look at this? |
Beta Was this translation helpful? Give feedback.
-
|
@barlage @RAbolafiaRosenzweig What do you think? |
Beta Was this translation helpful? Give feedback.
-
|
I tested for the globe with following modification: RefHeightAboveGrd = max(ZeroPlaneDispSfc, HeightCanopyTop) + RefHeightAboveSfc As the effects of the modification, as @tslin2 mentioned above, the 2-m temperature differences are about 0.2 K; the diurnal temperature range has become smaller. Daytime temperature reduces and night temperature increases. |
Beta Was this translation helpful? Give feedback.
-
|
This discussion is tracked in issue #172 and PR #207. For efficiency, this thread is now closed. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
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