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

cleanup

parent 61502641
No related branches found
No related tags found
1 merge request!436Prvi gmm 251
...@@ -201,7 +201,6 @@ public abstract class UsgsPrviBackbone2025 implements GroundMotionModel { ...@@ -201,7 +201,6 @@ public abstract class UsgsPrviBackbone2025 implements GroundMotionModel {
sigmaSq += gm.sigma() * gm.sigma() * b.weight(); sigmaSq += gm.sigma() * gm.sigma() * b.weight();
} }
return GroundMotion.create(median, sqrt(sigmaSq)); return GroundMotion.create(median, sqrt(sigmaSq));
} }
double[] applyEpistemic(double μ, double Mw, double rRup) { double[] applyEpistemic(double μ, double Mw, double rRup) {
...@@ -737,8 +736,6 @@ public abstract class UsgsPrviBackbone2025 implements GroundMotionModel { ...@@ -737,8 +736,6 @@ public abstract class UsgsPrviBackbone2025 implements GroundMotionModel {
GroundMotionModel σPgaGmm, GroundMotionModel σPgaGmm,
GmmInput in) { GmmInput in) {
System.out.println(σPgaGmm.getClass());
double pgaRock = calcSubPgaRock(in, σPgaGmm); double pgaRock = calcSubPgaRock(in, σPgaGmm);
double dSite = AbrahamsonGulerce_2020.calc_dSite(c.bnlSub, c.vlinSub, in.vs30, pgaRock); double dSite = AbrahamsonGulerce_2020.calc_dSite(c.bnlSub, c.vlinSub, in.vs30, pgaRock);
double τNlSq = calcNonLinTermSq(c.τSub, c.τSubPga, dSite, c.ρB); double τNlSq = calcNonLinTermSq(c.τSub, c.τSubPga, dSite, c.ρB);
...@@ -752,7 +749,6 @@ public abstract class UsgsPrviBackbone2025 implements GroundMotionModel { ...@@ -752,7 +749,6 @@ public abstract class UsgsPrviBackbone2025 implements GroundMotionModel {
double σNga = sqrt(τNlSq + φNlSqNga); double σNga = sqrt(τNlSq + φNlSqNga);
double σPrvi = sqrt(τNlSq + φNlSqPrvi); double σPrvi = sqrt(τNlSq + φNlSqPrvi);
return new double[] { σNga, σPrvi }; return new double[] { σNga, σPrvi };
} }
private static double calcSubPgaRock(GmmInput in, GroundMotionModel σGmm) { private static double calcSubPgaRock(GmmInput in, GroundMotionModel σGmm) {
......
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