Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
N
nshmp-lib
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ghsc
National Seismic Hazard Model Project
nshmp-lib
Commits
cb2a6665
Commit
cb2a6665
authored
2 years ago
by
Powers, Peter M.
Browse files
Options
Downloads
Patches
Plain Diff
parker doc edits
parent
30bb0e01
No related branches found
No related tags found
1 merge request
!282
Gmm updates
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/gov/usgs/earthquake/nshmp/gmm/ParkerEtAl_2020.java
+20
-16
20 additions, 16 deletions
...n/java/gov/usgs/earthquake/nshmp/gmm/ParkerEtAl_2020.java
with
20 additions
and
16 deletions
src/main/java/gov/usgs/earthquake/nshmp/gmm/ParkerEtAl_2020.java
+
20
−
16
View file @
cb2a6665
...
...
@@ -37,7 +37,10 @@ import gov.usgs.earthquake.nshmp.tree.LogicTree;
* <ul><li>Model currently uses {@code zTor} for intraslab depth scaling but
* authors recommend {@code zHyp}.
*
* <ul><li>The basin depth scaling model is that developed for Cascadia.</ul>
* <li>The basin depth scaling model is that developed for Cascadia.
*
* <li>Implementations are provided for the global model as well as Cascadia and
* Alaska regionalized models.</ul>
*
* <p><b>Note:</b> Direct instantiation of {@code GroundMotionModel}s is
* prohibited. Use {@link Gmm#instance(Imt)} to retrieve an instance for a
...
...
@@ -60,21 +63,6 @@ import gov.usgs.earthquake.nshmp.tree.LogicTree;
public
abstract
class
ParkerEtAl_2020
implements
GroundMotionModel
{
static
final
String
NAME
=
"Parker et al. (2020)"
;
static
final
Constraints
CONSTRAINTS_INTERFACE
=
Constraints
.
builder
()
.
set
(
MW
,
Range
.
closed
(
4.5
,
9.5
))
.
set
(
RRUP
,
Range
.
closed
(
20.0
,
1000.0
))
.
set
(
ZTOR
,
Range
.
closed
(
0.0
,
40.0
))
// should be ZHYP
.
set
(
VS30
,
Range
.
closed
(
150.0
,
2000.0
))
.
build
();
static
final
Constraints
CONSTRAINTS_SLAB
=
Constraints
.
builder
()
.
set
(
MW
,
Range
.
closed
(
4.5
,
8.5
))
.
set
(
RRUP
,
Range
.
closed
(
35.0
,
1000.0
))
.
set
(
ZTOR
,
Range
.
closed
(
0.0
,
200.0
))
.
set
(
VS30
,
Range
.
closed
(
150.0
,
2000.0
))
.
build
();
/*
* Developer notes:
*
...
...
@@ -93,6 +81,22 @@ public abstract class ParkerEtAl_2020 implements GroundMotionModel {
* ground motions).
*/
static
final
String
NAME
=
"Parker et al. (2020)"
;
static
final
Constraints
CONSTRAINTS_INTERFACE
=
Constraints
.
builder
()
.
set
(
MW
,
Range
.
closed
(
4.5
,
9.5
))
.
set
(
RRUP
,
Range
.
closed
(
20.0
,
1000.0
))
.
set
(
ZTOR
,
Range
.
closed
(
0.0
,
40.0
))
// should be ZHYP
.
set
(
VS30
,
Range
.
closed
(
150.0
,
2000.0
))
.
build
();
static
final
Constraints
CONSTRAINTS_SLAB
=
Constraints
.
builder
()
.
set
(
MW
,
Range
.
closed
(
4.5
,
8.5
))
.
set
(
RRUP
,
Range
.
closed
(
35.0
,
1000.0
))
.
set
(
ZTOR
,
Range
.
closed
(
0.0
,
200.0
))
.
set
(
VS30
,
Range
.
closed
(
150.0
,
2000.0
))
.
build
();
static
final
CoefficientContainer
COEFFS_INTERFACE
;
static
final
CoefficientContainer
COEFFS_SLAB
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment