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
82fd3a2d
Commit
82fd3a2d
authored
1 year ago
by
Powers, Peter M.
Browse files
Options
Downloads
Patches
Plain Diff
ASK14 getV1 refactor
parent
d6da017a
No related branches found
No related tags found
1 merge request
!400
Imt edits
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/main/java/gov/usgs/earthquake/nshmp/gmm/AbrahamsonEtAl_2014.java
+11
-12
11 additions, 12 deletions
...va/gov/usgs/earthquake/nshmp/gmm/AbrahamsonEtAl_2014.java
with
11 additions
and
12 deletions
src/main/java/gov/usgs/earthquake/nshmp/gmm/AbrahamsonEtAl_2014.java
+
11
−
12
View file @
82fd3a2d
...
...
@@ -50,11 +50,11 @@ import gov.usgs.earthquake.nshmp.tree.LogicTree;
* <p><b>Component:</b> RotD50 (average horizontal)
*
* @author U.S. Geological Survey
* @see Gmm#ASK_14_BASE
* @see Gmm#ASK_14
* @see Gmm#ASK_14_BASIN
* @see Gmm#ASK_14_CYBERSHAKE
* @see Gmm#ASK_14_CYBERSHAKE_ON
*
* @see Gmm#ASK_14_VS30_MEASURED
*/
public
class
AbrahamsonEtAl_2014
implements
GroundMotionModel
{
...
...
@@ -341,17 +341,16 @@ public class AbrahamsonEtAl_2014 implements GroundMotionModel {
// -- Equation 9
private
static
final
double
getV1
(
Imt
imt
)
{
Double
T
=
imt
.
period
();
if
(
T
==
null
)
{
return
1500.0
;
}
if
(
T
>=
3.0
)
{
return
800.0
;
}
if
(
T
>
0.5
)
{
return
exp
(-
0.35
*
log
(
T
/
0.5
)
+
log
(
1500.0
));
if
(
imt
.
isSA
())
{
double
T
=
imt
.
period
();
if
(
T
>=
3.0
)
{
return
800.0
;
}
if
(
T
>
0.5
)
{
return
exp
(-
0.35
*
log
(
T
/
0.5
)
+
log
(
1500.0
));
}
}
return
1500.0
;
return
1500.0
;
// PGA, PGV and low period SA
}
// used for interpolation in calcSoilTerm(), below
...
...
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