Blowing Snow parameterization - #19
Open
bbakernoaa wants to merge 2 commits into
Open
Conversation
This commit incorporates the bulk blowing snow sublimation formulation from Déry and Yau (1999) into the Noah-MP Land Surface Model. Key changes include: - A new option `opt_bsn` to enable the blowing snow sublimation scheme. - A new `blowing_snow` subroutine that calculates sublimation rates based on wind speed, temperature, and humidity, including threshold velocity and saltation mixing ratio. - Integration of the blowing snow sublimation flux into the snow mass balance and the total latent/sensible heat fluxes. - Support for both standard land points and glacier points. - Fixed potential API breakage by making the new option argument optional. - Maintained energy and water balance consistency. Co-authored-by: bbakernoaa <22104759+bbakernoaa@users.noreply.github.com>
…-snow-5646464639277638998 Implement Déry and Yau (1999) bulk blowing snow sublimation model
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This pull request adds support for blowing snow sublimation processes to the NOAH-MP land surface model, following the Dery and Yau (1999) scheme. The changes introduce a new option to enable or disable blowing snow sublimation, update relevant subroutines to handle the new process, and ensure that the mass and energy balances account for sublimation due to blowing snow.
Blowing snow sublimation support:
opt_bsn) to enable or disable blowing snow sublimation, with support for the Dery and Yau (1999) scheme. This option is now configurable in both the glacier and land surface modules. [1] [2] [3] [4] [5]blowing_snowsubroutine in bothmodule_sf_noahmp_glacierandmodule_sf_noahmplsm, and updated the code to call it when blowing snow sublimation is enabled. [1] [2] [3]Energy and mass balance updates:
qbsub) to represent the blowing snow sublimation rate, and updated the energy balance calculations to include its effects on latent and sensible heat fluxes. [1] [2] [3] [4]qbsubfrom snow water equivalent and ice mass, ensuring that blowing snow sublimation is reflected in snowpack evolution. [1] [2]Interface and subroutine changes:
water_glacier,snowwater_glacier,snowh2o_glacier,noahmp_sflx,water,snowwater) to pass the newqbsubvariable throughout the model, and updated their calls accordingly. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15]Minor fixes:
esnow.→esnow).