Source code for openquake.hazardlib.scalerel.strasser2010
# -*- coding: utf-8 -*-
# vim: tabstop=4 shiftwidth=4 softtabstop=4
#
# Copyright (C) 2012-2023 GEM Foundation
#
# OpenQuake is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OpenQuake is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with OpenQuake. If not, see <http://www.gnu.org/licenses/>.
"""
Module :mod:`openquake.hazardlib.scalerel.strasser2010` implements
:class:`StrasserInterface`, :class:`StrasserIntraslab`.
"""
from math import log10
from openquake.hazardlib.scalerel.base import BaseMSRSigma, BaseASRSigma
[docs]class StrasserInterface(BaseMSRSigma, BaseASRSigma):
"""
Strasser, Arango and Bommer magnitude -- rupture area relationships for
interface events.
See F. O. Strasser, M. C. Arango, and J. J. Bommer Scaling of the Source
Dimensions of Interface and Intraslab Subduction-zone Earthquakes with
Moment Magnitude Seismological Research Letters, November/December 2010,
v. 81, p. 941-950, doi:10.1785/gssrl.81.6.941
Implements both magnitude-area and area-magnitude scaling relationships.
"""
[docs] def get_std_dev_area(self, mag, rake):
"""
Standard deviation for Strasser et al 2010. Magnitude is ignored.
"""
return 0.304
[docs] def get_std_dev_mag(self, area, rake):
"""
Standard deviation on the magnitude for the Strasser et al. (2010)
area relation.
"""
return 0.286
[docs]class StrasserIntraslab(BaseMSRSigma, BaseASRSigma):
"""
Strasser, Arango and Bommer magnitude -- rupture area relationships for
intraslab events.
See F. O. Strasser, M. C. Arango, and J. J. Bommer Scaling of the Source
Dimensions of Interface and Intraslab Subduction-zone Earthquakes with
Moment Magnitude Seismological Research Letters, November/December 2010,
v. 81, p. 941-950, doi:10.1785/gssrl.81.6.941
Implements both magnitude-area and area-magnitude scaling relationships.
"""
[docs] def get_std_dev_area(self, mag, rake):
"""
Standard deviation for Strasser et al 2010. Magnitude is ignored.
"""
return 0.184
[docs] def get_std_dev_mag(self, rake):
"""
Standard deviation on the magnitude for the Strasser et al. (2010)
area relation.
"""
return 0.193