-
Notifications
You must be signed in to change notification settings - Fork 309
Description
When the ground motion field calculators were first introduced in OpenQuake (waaay back in 2012) the generation of ground motion fields with spatial correlation generally followed the approach and philosophy outlined in papers such as Park et al., (2007), Stafford et al., (2008) etc., in which the spatial correlation was only applied to the intra-event residual. As such, when GMPEs defined only for total standard deviations were used a particular error was raised (CorrelationButNoInterIntraStdDevs - https://github.com/gem/oq-engine/blob/master/openquake/hazardlib/calc/gmf.py#L235) if the user opted to run the GMFs with spatial correlation. Whilst this makes sense from a theoretical perspective, in practice this restriction is both unnecessary, limiting and, in some cases, inaccurate. I propose removing the CorrelationButNoInterIntraStdDevs error altogether and allow the user to apply the spatial correlation to the total standard deviation if the GMPE is defined only for this standard deviation type.
The reasons for doing so are as follows:
-
In the case of a single intensity measure type the inter-event residual is usually a constant (the exception will be addressed below) for the whole field such that the spatial correlation within the field is the same for the intra-event residuals as it is for the total residuals. Indeed, Jayaram & Baker (2009) derive their spatial correlation model from the total residual based on this assumption.
-
The exception to case 1 is when the GMPE authors propagate uncertainty in the nonlinear amplification term through the entire aleatory variability model such that inter-event residual becomes site dependent (e.g. Chiou & Youngs, 2014; Abrahamson et al., 2014). Here it can not be assumed that the inter-event residual is constant and this that the spatial correlation is the same for the intra-event residual and total residual. However, in such cases the simple partition of the sampling for the GMFs into inter- and intra-event components, as is done currently, actually creates an inconsistency between the total standard deviation of the GMPE when running the classical PSHA (this propagates the nonlinear term into the total stddev) and the implied total standard deviation from the two separately sampled inter- and intra-event residuals used for risk. In this case, it is more correct for the spatial correlation to be applied to the total residual rather than separately for the inter- and intra-event residual as is currently done.
-
There is a long-standing intention at some point to include spatial cross-correlation as a feature of the ground motion fields (this is done in part in the shakemap features) (Spatial Cross-Correlation in GMFs and Related Issues #3607). In this case the inter-event residual cannot be assumed constant either as it is period-dependent. However, of the few models for this that are available in the literature, several model their spatial correlation only on the total residual (e.g. Loth & Baker, 2013; Wang & Du, 2013) rather than separate them out in the manner described in Goda & Hong (2008) and Weatherill et al., (2015). Right or wrong, the inclusion of spatial cross-correlation can be applied to the total standard deviation anyway as the cross-correlation in the inter-event residuals is implicit in these cases.
-
Recent trends in ground motion modelling have meant that for classical PSHA there is a need to define only the total standard deviation, or else to apply scaling factors or adjustments only to the total standard deviation (e.g. mixture models, error propagation, AvgSa etc.). In such cases, trying to estimate how the adjustments would be partitioned into the inter- and intra-event terms is fraught with error, and so simply applying spatial correlations to the total standard deviation is preferable.
-
The raising of the error is just a nuisance to many users not intimately familiar with the details of ground motion modelling and who just want to run GMFs with spatial correlation for some GMPEs already selected for their region of interest. Again, right or wrong, raising the error creates an unnecessary obstacle for the users as opposed to simply running the GMFs with spatial correlation applied to the total standard deviation.