Source code for openquake.hazardlib.scalerel.point
# The Hazard Library
# Copyright (C) 2013-2014, GEM Foundation
#
# This program 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.
#
# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
"""
Module :mod:`openquake.hazardlib.scalerel.point` implements :class:`PointMSR`.
"""
from openquake.hazardlib.scalerel.base import BaseMSR
[docs]class PointMSR(BaseMSR):
"""
Implements magnitude-area scaling relationship to mimic point ruptures.
Independently of the magnitude value, this scaling relationship returns
always a very small value (1e-4 squared km, corresponding to a 10 by 10 m
square) for the median area.
NOTE: This scaling-relationship is meant to be used in area and point
sources to mimic point ruptures. Is not intended to be used in fault
sources, as it would require a fault surface discretization step to small
(less than 10 m, using an aspect ratio equal to 1) which is unfeasible for
realistic applications.
"""