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

parker seattle

parent 1a196f23
No related branches found
No related tags found
1 merge request!282Gmm updates
......@@ -470,6 +470,13 @@ public enum Gmm {
ParkerEtAl_2020.COEFFS_INTERFACE,
ParkerEtAl_2020.CONSTRAINTS_INTERFACE),
/** @see ParkerEtAl_2020 */
PSBAH_20_SEATTLE_INTERFACE_BASIN(
ParkerEtAl_2020.SeattleInterfaceBasin.class,
ParkerEtAl_2020.SeattleInterfaceBasin.NAME,
ParkerEtAl_2020.COEFFS_INTERFACE,
ParkerEtAl_2020.CONSTRAINTS_INTERFACE),
/** @see ParkerEtAl_2020 */
PSBAH_20_CASCADIA_SLAB_BASIN(
ParkerEtAl_2020.CascadiaSlabBasin.class,
......
......@@ -583,6 +583,24 @@ public abstract class ParkerEtAl_2020 implements GroundMotionModel {
}
}
static final class SeattleInterfaceBasin extends CascadiaInterface {
static final String NAME = CascadiaInterface.NAME + " (Seattle basin)";
SeattleInterfaceBasin(Imt imt) {
super(imt);
}
@Override
boolean basin() {
return true;
}
@Override
boolean seattle() {
return true;
}
}
static final class CascadiaSlabBasin extends CascadiaSlab {
static final String NAME = CascadiaSlab.NAME + " (basin)";
......
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