Skip to content
Snippets Groups Projects

PRVI GMM epistemic uncertainty

Merged Powers, Peter M. requested to merge ghsc/users/pmpowers/nshmp-lib:prvi-gmm-epi into main
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
@@ -443,10 +443,10 @@ public abstract class UsgsPrviBackbone2025 implements GroundMotionModel {
LogicTree.Builder<GroundMotion> tree = LogicTree.builder("gmm-tree-prvi-" + name);
for (Branch<GroundMotion> b : base) {
tree.addBranch(MODEL_BASE_ID + " : " + b.id(), b.value(), b.weight() * 0.5);
tree.addBranch(MODEL_BASE_ID + "-" + b.id(), b.value(), b.weight() * 0.5);
}
for (Branch<GroundMotion> b : adj) {
tree.addBranch(MODEL_ADJUST_ID + " : " + b.id(), b.value(), b.weight() * 0.5);
tree.addBranch(MODEL_ADJUST_ID + "-" + b.id(), b.value(), b.weight() * 0.5);
}
return tree.build();
}
Loading