-
Notifications
You must be signed in to change notification settings - Fork 105
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Revisit Noah-MP phenology computations - SAI/LAI interpolation #479
Comments
Adding to the above, the check that sets LAI to 0 if SAI is 0 (no leaves if no stem) conceptually makes sense but leads to odd situations when combined with the check that sets SAI to 0 when SAI < 0.05. See attached figure where vegetation cover drops to zero for a few days, as a consequence of SAI being ~0.04 during this period. This has rather odd consequences for variables This is incorrect because https://github.com/NCAR/summa/blob/372c3fbeb3825e3b3d635461a8e552f9f0895aec/build/source/engine/vegNrgFlux.f90#L1441 https://github.com/NCAR/summa/blob/372c3fbeb3825e3b3d635461a8e552f9f0895aec/build/source/engine/vegNrgFlux.f90#L1442 Print statements immediately after these lines in
SpeculationCurrently speculating that this issue somehow relates to the
Possible workaroundDisabling the |
Likely related to #327 |
In particular the current checks if either SAI or LAI are < 0.05 can lead to odd-looking behaviour. If this is the case, these values are set to 0 (to avoid computational issues) which can lead to strange jumps in SAI/LAI/VAI values.
https://github.com/NCAR/summa/blob/372c3fbeb3825e3b3d635461a8e552f9f0895aec/build/source/noah-mp/module_sf_noahmplsm.F#L571
https://github.com/NCAR/summa/blob/372c3fbeb3825e3b3d635461a8e552f9f0895aec/build/source/noah-mp/module_sf_noahmplsm.F#L572
The text was updated successfully, but these errors were encountered: