Fix: Correct grass albedo LAI-albedo relationship #1135
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.



Summary
Corrects the grass albedo update formula in the daily state module. Grass has a reversed LAI-albedo relationship compared to trees: increasing LAI should decrease albedo, not increase it.
Problem
The Fortran code (
suews_phys_dailystate.f95, line 502) was using the same albedo update formula for all vegetation types:This incorrectly increases grass albedo during the growing season, contradicting the physics (dense grass canopy absorbs more light than sparse grass over bright soil/litter).
Solution
Reversed the formula for grass to correctly model the negative LAI-albedo relationship:
Impact
Annual sample simulation (1-year, 2012 London/Swindon):
See issue #1134 for detailed impact analysis and plots.
Closes #1134