-
Notifications
You must be signed in to change notification settings - Fork 277
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
M9 Basin Term for US 2023 Model #10118
Open
CB-quakemodel
wants to merge
14
commits into
master
Choose a base branch
from
us_2023_basin_terms
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+211
−10
Conversation
This file contains 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 PR adds the M9 Basin adjustment (as described on pp. 1178 of Moschetti et al. 2024 EQ spectra article on US 2023 NSHMP GMC). The M9 basin adjustment is an additive factor to the mean ground-motion for long period spectral accelerations (T > 1.9 s) of + log(2.0) for all sites with z2pt5 greater than 6 km.
The PR adds the following:
A separate ModifiableGMPE class (as exists for example for CY14 site term and NRCAN15 site terms). Having a separate ModifiableGMPE class with importable basin adjustment function will be required for when we create the "M9" class of each US 2023 subduction interface GMM (AbrahamsonGulerce2020, KuehnEtAl2020, ParkerEtAl2020, AtkinsonMacias2009, ZhaoEtAl2006).
The ability to specify the M9 basin adjustment as a kwarg when instantiating a ModifiableGMPE from a GSIM LT XML (or programmatically), like any other ModifiableGMPE capability such as the Al Atik 2015 sigma model.
Some simple unit tests checking that the basin adjustment is only applied for long period ground-motions at sites with z2pt5 > 6 km, with an expected different of log(2.0) being obtained at these sites compared to the values obtained at the same sites with the unmodified version of the same GMM.
T > 1.9 s threshold is confirmed by 1) - usgs java code (line 205 of https://code.usgs.gov/ghsc/nshmp/nshmp-lib/-/blob/main/src/main/java/gov/usgs/earthquake/nshmp/gmm/AtkinsonMacias_2009.java?ref_type=heads) and 2) the discussion in OQ issues of how to implement these adjustments - #9894