Package gov.usgs.earthquake.nshmp.model
Interface Rupture
-
- All Known Implementing Classes:
RegularRupture
,SystemRuptureSet.SystemRupture
public interface Rupture
ARupture
is a proxy for an actual earthquake and encapsulates all the source information required by a ground motion model (Gmm).- Author:
- U.S. Geological Survey
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static String
asString(Rupture rupture)
toString() helper for implementations.double
magnitude()
TheRupture
magnitude.double
rake()
TheRupture
rake.double
rate()
TheRupture
rate.RuptureSurface
surface()
TheRupture
surface.
-
-
-
Method Detail
-
magnitude
double magnitude()
TheRupture
magnitude.
-
rake
double rake()
TheRupture
rake.
-
surface
RuptureSurface surface()
TheRupture
surface.
-
rate
double rate()
TheRupture
rate.
-
-