Skip to content
Snippets Groups Projects
Commit ee7bc5c9 authored by Powers, Peter M.'s avatar Powers, Peter M.
Browse files

Merge branch 'main' into 1.0.0-rc

parents 32efbd35 57139296
No related branches found
No related tags found
No related merge requests found
Pipeline #129790 passed
......@@ -1040,15 +1040,15 @@ public enum Gmm {
/** @see PezeshkEtAl_2018 */
NGA_EAST_SEED_PZCT18_1SS(
PezeshkEtAl_2018.PZCT18_1SS.class,
PezeshkEtAl_2018.PZCT18_1SS.NAME,
PezeshkEtAl_2018.Seed_PZCT18_1SS.class,
PezeshkEtAl_2018.Seed_PZCT18_1SS.NAME,
PezeshkEtAl_2018.COEFFS_1SS,
PezeshkEtAl_2018.CONSTRAINTS),
/** @see PezeshkEtAl_2018 */
NGA_EAST_SEED_PZCT18_2ES(
PezeshkEtAl_2018.PZCT18_2ES.class,
PezeshkEtAl_2018.PZCT18_2ES.NAME,
PezeshkEtAl_2018.Seed_PZCT18_2ES.class,
PezeshkEtAl_2018.Seed_PZCT18_2ES.NAME,
PezeshkEtAl_2018.COEFFS_2ES,
PezeshkEtAl_2018.CONSTRAINTS),
......
......@@ -54,8 +54,8 @@ import gov.usgs.earthquake.nshmp.tree.LogicTree;
* <p><b>Component:</b> **** RotD50 ?
*
* @author U.S. Geological Survey
* @see Gmm#PZCT18_1SS
* @see Gmm#PZCT18_2ES
* @see Gmm#NGA_EAST_SEED_PZCT18_1SS
* @see Gmm#NGA_EAST_SEED_PZCT18_2ES
*/
@Beta
public abstract class PezeshkEtAl_2018 implements GroundMotionModel {
......@@ -69,8 +69,8 @@ public abstract class PezeshkEtAl_2018 implements GroundMotionModel {
.build();
static final class Model {
static final String PZCT18_1SS = "PZCT18-1SS";
static final String PZCT18_2ES = "PZCT18-2ES";
static final String PZCT18_1SS = "PZCT18_1SS";
static final String PZCT18_2ES = "PZCT18_2ES";
}
/*
......@@ -192,20 +192,20 @@ public abstract class PezeshkEtAl_2018 implements GroundMotionModel {
return sqrt(τ * τ + φ * φ);
}
static final class PZCT18_1SS extends PezeshkEtAl_2018 {
static final class Seed_PZCT18_1SS extends PezeshkEtAl_2018 {
static final String MODEL = Model.PZCT18_1SS;
static final String NAME = PezeshkEtAl_2018.NAME + " : " + MODEL;
PZCT18_1SS(Imt imt) {
Seed_PZCT18_1SS(Imt imt) {
super(imt, MODEL);
}
}
static final class PZCT18_2ES extends PezeshkEtAl_2018 {
static final class Seed_PZCT18_2ES extends PezeshkEtAl_2018 {
static final String MODEL = Model.PZCT18_2ES;
static final String NAME = PezeshkEtAl_2018.NAME + " : " + MODEL;
PZCT18_2ES(Imt imt) {
Seed_PZCT18_2ES(Imt imt) {
super(imt, MODEL);
}
}
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment