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

fixed ba08 site amp in MA05

parent 500bbb11
No related branches found
No related tags found
1 merge request!432General edits and improvements
......@@ -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);
}
}
......
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