pub trait GroundMotionModeling {
// Required method
fn calc_from_point(&self, point: &Vs30Point, eq: &Earthquake) -> GmpePoint;
}
Expand description
Trait representing a Ground Motion Prediction Equation (GMPE).
Implementors of this trait can compute ground motion values at a site for a given earthquake scenario.