Source code for openquake.hazardlib.calc.gmf

# -*- coding: utf-8 -*-
# vim: tabstop=4 shiftwidth=4 softtabstop=4
#
# Copyright (C) 2012-2022 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.calc.gmf` exports
:func:`ground_motion_fields`.
"""
import numpy

from openquake.baselib.general import AccumDict
from openquake.baselib.python3compat import decode
from openquake.hazardlib.const import StdDev
from openquake.hazardlib.cross_correlation import NoCrossCorrelation
from openquake.hazardlib.gsim.base import ContextMaker, FarAwayRupture
from openquake.hazardlib.imt import from_string

U32 = numpy.uint32
F32 = numpy.float32


[docs]class CorrelationButNoInterIntraStdDevs(Exception): def __init__(self, corr, gsim): self.corr = corr self.gsim = gsim def __str__(self): return '''\ You cannot use the correlation model %s with the GSIM %s, \ that defines only the total standard deviation. If you want to use a \ correlation model you have to select a GMPE that provides the inter and \ intra event standard deviations.''' % ( self.corr.__class__.__name__, self.gsim.__class__.__name__)
[docs]def rvs(distribution, *size): array = distribution.rvs(size) return array
[docs]def exp(vals, imt): """ Exponentiate the values unless the IMT is MMI """ if str(imt) == 'MMI': return vals return numpy.exp(vals)
[docs]class GmfComputer(object): """ Given an earthquake rupture, the ground motion field computer computes ground shaking over a set of sites, by randomly sampling a ground shaking intensity model. :param rupture: Rupture to calculate ground motion fields radiated from. :param :class:`openquake.hazardlib.site.SiteCollection` sitecol: a complete SiteCollection :param imts: a sorted list of Intensity Measure Type strings :param cmaker: a :class:`openquake.hazardlib.gsim.base.ContextMaker` instance :param truncation_level: Float, number of standard deviations for truncation of the intensity distribution :param correlation_model: Instance of correlation model object. See :mod:`openquake.hazardlib.correlation`. Can be ``None``, in which case non-correlated ground motion fields are calculated. Correlation model is not used if ``truncation_level`` is zero. :param amplifier: None or an instance of Amplifier """ # The GmfComputer is called from the OpenQuake Engine. In that case # the rupture is an higher level containing a # :class:`openquake.hazardlib.source.rupture.Rupture` instance as an # attribute. Then the `.compute(gsim, num_events, ms)` method is called and # a matrix of size (I, N, E) is returned, where I is the number of # IMTs, N the number of affected sites and E the number of events. The # seed is extracted from the underlying rupture. def __init__(self, rupture, sitecol, cmaker, correlation_model=None, cross_correl=None, amplifier=None, sec_perils=()): if len(sitecol) == 0: raise ValueError('No sites') elif len(cmaker.imtls) == 0: raise ValueError('No IMTs') elif len(cmaker.gsims) == 0: raise ValueError('No GSIMs') self.cmaker = cmaker self.imts = [from_string(imt) for imt in cmaker.imtls] self.cmaker = cmaker self.gsims = sorted(cmaker.gsims) self.correlation_model = correlation_model self.amplifier = amplifier self.sec_perils = sec_perils # `rupture` is an EBRupture instance in the engine if hasattr(rupture, 'source_id'): self.ebrupture = rupture self.source_id = rupture.source_id # the underlying source rupture = rupture.rupture # the underlying rupture else: # in the hazardlib tests self.source_id = '?' self.seed = rupture.rup_id ctxs = cmaker.get_ctxs([rupture], sitecol) if not ctxs: raise FarAwayRupture [self.ctx] = ctxs if correlation_model: # store the filtered sitecol self.sites = sitecol.complete.filtered(self.ctx.sids) self.cross_correl = cross_correl or NoCrossCorrelation( cmaker.truncation_level)
[docs] def compute_all(self, sig_eps=None): """ :returns: (dict with fields eid, sid, gmv_X, ...), dt """ min_iml = self.cmaker.min_iml rlzs_by_gsim = self.cmaker.gsims sids = self.ctx.sids eids_by_rlz = self.ebrupture.get_eids_by_rlz(rlzs_by_gsim) mag = self.ebrupture.rupture.mag data = AccumDict(accum=[]) mean_stds = self.cmaker.get_mean_stds([self.ctx]) # (4, G, M, N) for g, (gs, rlzs) in enumerate(rlzs_by_gsim.items()): num_events = sum(len(eids_by_rlz[rlz]) for rlz in rlzs) if num_events == 0: # it may happen continue # NB: the trick for performance is to keep the call to # .compute outside of the loop over the realizations; # it is better to have few calls producing big arrays array, sig, eps = self.compute(gs, num_events, mean_stds[:, g]) M, N, E = array.shape # sig and eps have shapes (M, E) instead for n in range(N): for e in range(E): if (array[:, n, e] < min_iml).all(): array[:, n, e] = 0 array = array.transpose(1, 0, 2) # from M, N, E to N, M, E n = 0 for rlz in rlzs: eids = eids_by_rlz[rlz] for ei, eid in enumerate(eids): gmfa = array[:, :, n + ei] # shape (N, M) if sig_eps is not None: tup = tuple([eid, rlz] + list(sig[:, n + ei]) + list(eps[:, n + ei])) sig_eps.append(tup) items = [] for sp in self.sec_perils: o = sp.compute(mag, zip(self.imts, gmfa.T), self.ctx) for outkey, outarr in zip(sp.outputs, o): items.append((outkey, outarr)) for i, gmv in enumerate(gmfa): if gmv.sum() == 0: continue data['sid'].append(sids[i]) data['eid'].append(eid) data['rlz'].append(rlz) # used in compute_gmfs_curves for m in range(M): data[f'gmv_{m}'].append(gmv[m]) for outkey, outarr in items: data[outkey].append(outarr[i]) # gmv can be zero due to the minimum_intensity, coming # from the job.ini or from the vulnerability functions n += len(eids) return data
[docs] def compute(self, gsim, num_events, mean_stds): """ :param gsim: GSIM used to compute mean_stds :param num_events: the number of seismic events :param mean_stds: array of shape (4, M, N) :returns: a 32 bit array of shape (num_imts, num_sites, num_events) and two arrays with shape (num_imts, num_events): sig for tau and eps for the random part """ M = len(self.imts) result = numpy.zeros( (len(self.imts), len(self.ctx.sids), num_events), F32) sig = numpy.zeros((M, num_events), F32) # same for all events eps = numpy.zeros((M, num_events), F32) # not the same numpy.random.seed(self.seed) num_sids = len(self.ctx.sids) if self.cross_correl.distribution: # build arrays of random numbers of shape (M, N, E) and (M, E) intra_eps = [ rvs(self.cross_correl.distribution, num_sids, num_events) for _ in range(M)] inter_eps = self.cross_correl.get_inter_eps(self.imts, num_events) else: intra_eps = [None] * M inter_eps = [numpy.zeros(num_events)] * M for m, imt in enumerate(self.imts): try: result[m], sig[m], eps[m] = self._compute( mean_stds[:, m], imt, gsim, intra_eps[m], inter_eps[m]) except Exception as exc: raise RuntimeError( '(%s, %s, source_id=%r) %s: %s' % (gsim, imt, decode(self.source_id), exc.__class__.__name__, exc) ).with_traceback(exc.__traceback__) if self.amplifier: self.amplifier.amplify_gmfs( self.ctx.ampcode, result, self.imts, self.seed) return result, sig, eps
def _compute(self, mean_stds, imt, gsim, intra_eps, inter_eps): if self.cmaker.truncation_level == 0: # for truncation_level = 0 there is only mean, no stds if self.correlation_model: raise ValueError('truncation_level=0 requires ' 'no correlation model') mean, _, _, _ = mean_stds gmf = exp(mean, imt)[:, None] gmf = gmf.repeat(len(inter_eps), axis=1) inter_sig = 0 elif gsim.DEFINED_FOR_STANDARD_DEVIATION_TYPES == {StdDev.TOTAL}: # If the GSIM provides only total standard deviation, we need # to compute mean and total standard deviation at the sites # of interest. # In this case, we also assume no correlation model is used. if self.correlation_model: raise CorrelationButNoInterIntraStdDevs( self.correlation_model, gsim) mean, sig, _, _ = mean_stds gmf = exp(mean[:, None] + sig[:, None] * intra_eps, imt) inter_sig = numpy.nan else: mean, sig, tau, phi = mean_stds # the [:, None] is used to implement multiplication by row; # for instance if a = [1 2], b = [[1 2] [3 4]] then # a[:, None] * b = [[1 2] [6 8]] which is the expected result; # otherwise one would get multiplication by column [[1 4] [3 8]] intra_res = phi[:, None] * intra_eps # shape (N, E) if self.correlation_model is not None: intra_res = self.correlation_model.apply_correlation( self.sites, imt, intra_res, phi) if len(intra_res.shape) == 1: # a vector intra_res = intra_res[:, None] inter_res = tau[:, None] * inter_eps # shape (N, 1) * E => (N, E) gmf = exp(mean[:, None] + intra_res + inter_res, imt) # (N, E) inter_sig = tau.max() # from shape (N, 1) => scalar return gmf, inter_sig, inter_eps # shapes (N, E), 1, E
# this is not used in the engine; it is still useful for usage in IPython # when demonstrating hazardlib capabilities
[docs]def ground_motion_fields(rupture, sites, imts, gsim, truncation_level, realizations, correlation_model=None, seed=0): """ Given an earthquake rupture, the ground motion field calculator computes ground shaking over a set of sites, by randomly sampling a ground shaking intensity model. A ground motion field represents a possible 'realization' of the ground shaking due to an earthquake rupture. .. note:: This calculator is using random numbers. In order to reproduce the same results numpy random numbers generator needs to be seeded, see http://docs.scipy.org/doc/numpy/reference/generated/numpy.random.seed.html :param openquake.hazardlib.source.rupture.Rupture rupture: Rupture to calculate ground motion fields radiated from. :param openquake.hazardlib.site.SiteCollection sites: Sites of interest to calculate GMFs. :param imts: List of intensity measure type objects (see :mod:`openquake.hazardlib.imt`). :param gsim: Ground-shaking intensity model, instance of subclass of either :class:`~openquake.hazardlib.gsim.base.GMPE` or :class:`~openquake.hazardlib.gsim.base.IPE`. :param truncation_level: Float, number of standard deviations for truncation of the intensity distribution :param realizations: Integer number of GMF realizations to compute. :param correlation_model: Instance of correlation model object. See :mod:`openquake.hazardlib.correlation`. Can be ``None``, in which case non-correlated ground motion fields are calculated. Correlation model is not used if ``truncation_level`` is zero. :param int seed: The seed used in the numpy random number generator :returns: Dictionary mapping intensity measure type objects (same as in parameter ``imts``) to 2d numpy arrays of floats, representing different realizations of ground shaking intensity for all sites in the collection. First dimension represents sites and second one is for realizations. """ cmaker = ContextMaker(rupture.tectonic_region_type, [gsim], dict(truncation_level=truncation_level, imtls={str(imt): [1] for imt in imts})) rupture.rup_id = seed gc = GmfComputer(rupture, sites, cmaker, correlation_model) mean_stds = cmaker.get_mean_stds([gc.ctx])[:, 0] res, _sig, _eps = gc.compute(gsim, realizations, mean_stds) return {imt: res[m] for m, imt in enumerate(gc.imts)}