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
630fa407
Commit
630fa407
authored
4 months ago
by
Powers, Peter M.
Browse files
Options
Downloads
Patches
Plain Diff
fixed ba08 site amp in MA05
parent
500bbb11
No related branches found
No related tags found
1 merge request
!432
General edits and improvements
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/gov/usgs/earthquake/nshmp/gmm/MotazedianAtkinson_2005.java
+6
-6
6 additions, 6 deletions
...ov/usgs/earthquake/nshmp/gmm/MotazedianAtkinson_2005.java
with
6 additions
and
6 deletions
src/main/java/gov/usgs/earthquake/nshmp/gmm/MotazedianAtkinson_2005.java
+
6
−
6
View file @
630fa407
...
...
@@ -242,14 +242,14 @@ public class MotazedianAtkinson_2005 implements GroundMotionModel {
// Get μ from MA_05_BASE for current IMT (interpolate if necessary)
double
μ
=
GroundMotions
.
combine
(
super
.
calc
(
in
)).
mean
();
double
μPga
=
calcMean
(
coeffsPGA
,
in
.
rRup
,
in
.
Mw
);
double
pgaRef
=
Math
.
exp
(
calcMean
(
coeffsPGA
,
in
.
rRup
,
in
.
Mw
)
)
;
double
site
=
siteAmp
.
isPresent
()
?
siteAmp
.
get
().
siteAmp
(
μPga
,
in
.
vs30
)
:
calcInterpolatedSite
(
super
.
coeffs
.
imt
,
μPga
,
in
.
vs30
);
?
siteAmp
.
get
().
siteAmp
(
pgaRef
,
in
.
vs30
)
:
calcInterpolatedSite
(
super
.
coeffs
.
imt
,
pgaRef
,
in
.
vs30
);
return
GroundMotions
.
createTree
(
μ
+
site
,
SIGMA
);
}
private
static
double
calcInterpolatedSite
(
Imt
imt
,
double
μPga
,
double
vs30
)
{
private
static
double
calcInterpolatedSite
(
Imt
imt
,
double
pgaRef
,
double
vs30
)
{
Range
<
Imt
>
imtRange
=
INTERPOLATED_SITE_IMTS
.
get
(
imt
);
Imt
imtLo
=
imtRange
.
lowerEndpoint
();
Imt
imtHi
=
imtRange
.
upperEndpoint
();
...
...
@@ -263,8 +263,8 @@ public class MotazedianAtkinson_2005 implements GroundMotionModel {
double
tTarget
=
imt
.
period
();
BooreAtkinson_2008
ba08lo
=
(
BooreAtkinson_2008
)
BA_08_BASE
.
instance
(
imtLo
);
BooreAtkinson_2008
ba08hi
=
(
BooreAtkinson_2008
)
BA_08_BASE
.
instance
(
imtHi
);
double
siteLo
=
ba08lo
.
siteAmp
(
μPga
,
vs30
);
double
siteHi
=
ba08hi
.
siteAmp
(
μPga
,
vs30
);
double
siteLo
=
ba08lo
.
siteAmp
(
pgaRef
,
vs30
);
double
siteHi
=
ba08hi
.
siteAmp
(
pgaRef
,
vs30
);
return
Interpolator
.
findY
(
tLo
,
siteLo
,
tHi
,
siteHi
,
tTarget
);
}
}
...
...
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