Open this page in a new tab

Quantitative Archaeoseismlogy

Topics
Okada Half Space Model

Someya, Yomada, & Okazaki (2025)

Abstract

The Okada model is a widely used analytical solution for displacements and strains caused by a point or rectangular dislocation source in a 3D elastic half-space. We present OkadaTorch, a PyTorch implementation of the Okada model, where the entire code is differentiable; gradients with respect to input can be easily computed using automatic differentiation (AD). Our work consists of two components: a direct translation of the original Okada model into PyTorch, and a convenient wrapper interface for efficiently computing gradients and Hessians with respect to either observation station coordinates or fault parameters. This differentiable framework is well suited for fault parameter inversion, including gradient-based optimization, Bayesian inference, and integration with scientific machine learning (SciML) models. Our code is available here: https://github.com/msomeya1/OkadaTorch

1 Introduction

The Okada model [1, 2] provides an analytical solution for displacements and strains (spatial derivatives of displacement) caused by a point or rectangular dislocation source in a 3D elastic half-space. It has become a standard tool in seismology and geodesy for modeling coseismic deformation, and has been widely used to estimate fault slip distributions from GNSS/InSAR data [3, 4, 5, 6, 7] and tsunami data [8, 9, 10].

In addition to the original FORTRAN implementation [11], various implementations or wrappers of the Okada model exist, including Fortran [12], MATLAB [13, 14, 15], Python [15, 16, 17, 18], and Julia [19]. These implementations are well suited for forward modeling and facilitate integration with models written in each programming language. However, inverse modeling of crustal deformation sometimes requires the computation of model gradients with respect to input parameters [20, 21]. One traditional approach is to derive the analytical derivatives of the forward model, either by hand [20] or with the aid of a computer algebra system [22], and then implement these expressions in programs. This approach is known as symbolic differentiation. An alternative is automatic differentiation (AD); it treats a numerical program as a composition of differentiable primitive operations and algorithmically applies the chain rule to compute exact derivatives of the program output with respect to its inputs. Since AD can provide accurate gradients efficiently, it has become a core technology in deep learning frameworks. In recent years, a variety of AD libraries have been developed such as PyTorch [23, 24], TensorFlow [25], and JAX [26, 27].

AD has been used as a tool for inverse analysis in geophysics, especially applied to inversion of seismic sources and subsurface structures [28, 29, 30, 31]. However, to our knowledge, there has been no attempt to apply AD to the Okada model. In this work, we present a PyTorch implementation of the Okada model that enables efficient computation of derivatives of displacement and strain. Our implementation consists of two components:

• A direct translation of the original Okada subroutines, and
• A user-friendly wrapper interface, OkadaWrapper, that allows easy computation of gradients and Hessians.

This model serves as an essential component of differentiable programming in geophysical modeling, opens up new possibilities for advanced applications, including gradient-based inversion, sensitivity analysis, Bayesian inference, and integration with scientific machine learning (SciML) models.

2 Direct Translation of the Original Okada’s Subroutines

The core of our implementation is a direct translation of the original FORTRAN subroutines into PyTorch functions:

SPOINT [1]: Calculate displacements and strains at the surface (z = 0) created by a point source.

SRECTF [1]: Calculate displacements and strains at the surface (z = 0) created by a rectangular fault.

DC3D0 [2]: Same as SPOINT, but under the surface (z ≤ 0).

DC3D [2]: Same as SRECTF, but under the surface (z ≤ 0).

These functions are implemented using PyTorch tensor operations, enabling vectorized computation over multiple stations and GPU acceleration.

The interface of each function closely follows that of the original FORTRAN version. For details of the core algorithm and usage, we refer readers to the original publications [1, 2, 11]. However, we introduce two additional keyword arguments in our implementation that are not present in the original code: compute_strain and is_degree.

compute_strain: A boolean flag indicating whether to compute strain components in addition to displacements. The original FORTRAN subroutines always return both, but in some cases, displacement alone is sufficient. When compute_strain is False, intermediate variables that are only used to compute strain are not assigned, thus reducing computational cost.

is_degree: A boolean flag indicating whether angular parameters (strike, dip, rake) are specified in degrees (True, default) or radians (False).

Below is a simple example that demonstrates how to compute displacements using the DC3D function without strain:


import numpy as np
import torch
from OkadaTorch import DC3D

ALPHA = 2.0 / 3.0

x = np.linspace(-1, 1, 101)
y = np.linspace(-1, 1, 101)
z = np.linspace(-1, 0, 51)

X, Y, Z = np.meshgrid(x, y, z)

X = torch.from_numpy(X)
Y = torch.from_numpy(Y)
Z = torch.from_numpy(Z)

DEPTH = 2.0
DIP = torch.tensor(45.0)

AL1, AL2 = -0.2, 0.2
AW1, AW2 = -0.1, 0.1

DISL1, DISL2, DISL3 = 4.0, 3.0, 0.0

out, IRET = DC3D
	(ALPHA,
    X, Y, Z,
    DEPTH,
    DIP,
    AL1, AL2,
    AW1, AW2,
    DISL1, DISL2, DISL3,
    compute_strain=False,
    is_degree=True)


Fig. 1

Three displacement components calculated by compute method (units: m). The dashed rectangles represent the surface projections of the faults, and the upper edges along the strike directions are shown as solid lines.

click on image to open in a new tab

Someya et al. (2025)


In this case, out is a list of three tensors [ux, uy, uz], corresponding to the displacement components along the x, y, and z axes. IRET is an integer flag inherited from the original FORTRAN implementation, indicating whether the computation was successful. Both the displacements and IRET have the same shape as the input coordinate tensors X, Y, and Z.

In the original FORTRAN implementation, the subroutines are designed to operate on scalar inputs, and to compute displacements at multiple stations, users need to explicitly loop over all coordinates and call the subroutine repeatedly. In contrast, our PyTorch implementation supports fully vectorized tensor inputs, allowing all stations to be processed in a single function call without any explicit looping. This not only simplifies the code but also improves computational efficiency, especially on GPUs.

Examples demonstrating the use of other subroutines, such as SPOINT, SRECTF, and DC3D0, are available in the OkadaTorch GitHub repository. In practice, users may be interested in computing displacements either at the surface or under the surface, depending on the application. To simplify such use cases, we provide a unified wrapper interface that internally selects the appropriate subroutine based on the input configuration. This interface, along with its support for automatic differentiation, is described in the following section.

3 The OkadaWrapper Class

Introduction

To simplify the use of functions and to easily calculate gradients and Hessians, we provide a high-level wrapper class, OkadaWrapper. This class abstracts the low-level subroutines (SPOINT, SRECTF, DC3D0, DC3D) and offers a unified interface for forward modeling and derivative computation.

This class supports three main methods: compute, gradient, and hessian. Each method accepts the same basic inputs: observation coordinates (coords) and fault parameters (params), with additional arguments specific to each method. In the following subsections, we describe each method in turn, along with examples.

3.1 Forward Modeling with compute method

The compute method performs the forward calculation; given the fault parameters, the displacements and/or strains are calculated.

Required arguments are as follows.

coords: A Python dictionary containing observation station coordinates. Allowed keys are "x", "y", and optionally "z" (all PyTorch tensors of the same shape). The coordinate system is right-handed: x (east), y (north), z (upward). Note that z must be negative for subsurface observation points.

params: A dictionary specifying the fault parameters. Required keys include:

  – "x_fault", "y_fault", "depth": x, y coordinates and depth of the source (depth is positive). In the case of a point source, these values represent the location of that point. In the case of a rectangular fault, the flag fault_origin specifies which point these values represent. If fault_origin is "topleft", then "x_fault", "y_fault" and "depth" represent the coordinates of the top left corner of the rectangle. If fault_origin is "center", then "x_fault", "y_fault" and "depth" represent the coordinates of the rectangle’s center.

  – "strike", "dip", "rake": fault orientation.

  – "slip": slip amount (for rectangular faults) or potency (for point sources).

Optional keys: "length" and "width" for rectangular faults.

Other optional arguments are as follows.

compute_strain: whether to compute strain components in addition to displacements. Default True.

is_degree: whether strike/dip/rake are in degrees. Default True.

fault_origin: which point the fault location parameters ( "x_fault", "y_fault" and "depth" ) refer to. Either "topleft" (default) or "center" can be specified.

nu: Poisson’s ratio of the medium. Default 0.25.

A typical usage is as follows:


from OkadaTorch import OkadaWrapper

coords = {
    "x": x,  # torch.Tensor representing x-coordinate of the station
    "y": y   # torch.Tensor representing y-coordinate of the station
}

params = {  # All values are torch.Tensor (each is a scalar)
    "x_fault": x_fault,
    "y_fault": y_fault,
    "depth": depth,
    "length": length,
    "width": width,
    "strike": strike,
    "dip": dip,
    "rake": rake,
    "slip": slip
}

okada = OkadaWrapper()

out = okada.compute(coords, params)


If compute_strain is True, out is a list of 12 tensors: 3 displacement components and 9 strain components:

[ ux, uy, uz, ∂ux/∂x, ..., ∂uz/∂z ]   (1)


If False, only 3 displacement components are returned:

[ux, uy, uz]   (2)


Figures 1 and 2 present a demonstration of the okada.compute method applied to a rectangular fault model. The fault parameters are taken from the model 10 of Table S1 in [32]. Figure 1 illustrates the surface displacement field, while Figure 2 shows the corresponding strain distribution computed at the surface. The result confirms that the wrapper produces physically consistent deformation patterns.

Fig. 1

Three displacement components calculated by compute method (units: m). The dashed rectangles represent the surface projections of the faults, and the upper edges along the strike directions are shown as solid lines.

click on image to open in a new tab

Someya et al. (2025)


Fig. 2

Nine strain components calculated by compute method (units: m/km, displacement [m] differentiated with respect to distance [km]).

click on image to open in a new tab

Someya et al. (2025)


3.2 First-Order Derivatives with gradient method

The gradient method computes the derivative of the model output with respect to a single input variable. PyTorch’s function jacfwd is used internally.

arg: The variable to differentiate with respect to. This must be one of the keys in either coords (e.g., "x", "y", "z") or params (e.g., "depth", "strike", etc.).

If arg is one of the fault parameters, the resulting first-order derivatives represent the sensitivity of the output with respect to that parameter. These sensitivities can be directly used for gradient-based first-order optimization methods, as well as for local sensitivity analysis and parameter studies.

Other arguments (coords, params, compute_strain, is_degree, fault_origin and nu) are the same as in the compute method.

A typical usage is as follows:

out = okada.gradient(coords, params, arg="x")
out = okada.gradient(coords, params, arg="depth")
If compute_strain is True, out is a list of 3 displacement components and 9 strain components differentiated by arg:

[ ∂ux/∂(arg), ∂uy/∂(arg), ∂uz/∂(arg), ∂/∂(arg) (∂ux/∂x), ..., ∂/∂(arg) (∂uz/∂z) ]   (3)


If False, out is a list of 3 displacement components differentiated by arg:

[ ∂ux/∂(arg), ∂uy/∂(arg), ∂uz/∂(arg) ]   (4)


Figure 3 shows the first-order derivatives of the vertical displacement uz with respect to nine fault parameters (same parameters as in Figures 1 and 2). As expected, the derivative with respect to slip — being linearly related to the output — exhibits the same spatial pattern as uz itself. In contrast, derivatives with respect to the other nonlinear parameters display spatially distinct and interpretable structures. Such visualizations may also be useful for educational purposes, for example, to help students new to seismology understand how each fault parameter influences observed surface deformation.

Fig. 3

First-order derivatives of the vertical displacement uz with respect to fault parameters, calculated by gradient method.

click on image to open in a new tab

Someya et al. (2025)


3.3 Second-Order Derivatives with hessian method

The hessian method computes the second-order derivatives of the model output with respect to two variables. PyTorch’s function jacfwd is used internally.

arg1, arg2: The variables to differentiate with respect to. These must both be from the same category (either both from coords or both from params). For instance, ("x", "y") or ("depth", "rake") are valid pairs, but ("x", "slip") is not.

If both arg1 and arg2 are fault parameters, the resulting second-order derivatives quantify the local curvature of the forward model output with respect to those parameters. These second derivatives are useful for second-order optimization, uncertainty quantification, and Laplace approximation methods in Bayesian inference, where knowledge of the Hessian around the optimum is essential.

Other arguments (coords, params, compute_strain, is_degree, fault_origin and nu) are the same as in the compute method.

A typical usage is as follows:

out = okada.hessian(coords, params, arg1="x", arg2="y")
out = okada.hessian(coords, params, arg1="depth", arg2="depth")
If compute_strain is True, out is a list of 3 displacement components and 9 strain components differentiated by arg1 and arg2:

[ ∂2ux/ ∂(arg1)∂(arg2), ∂2uy/ ∂(arg1)∂(arg2), ∂2uz/ ∂(arg1)∂(arg2), ∂2/ ∂(arg1)∂(arg2) (∂ux/∂x), ..., ∂2/ ∂(arg1)∂(arg2) (∂uz/∂z) ]   (5)


If False, out is a list of 3 displacement components differentiated by arg1 and arg2:

[ ∂2ux/ ∂(arg1)∂(arg2), ∂2uy/ ∂(arg1)∂(arg2), ∂2uz/ ∂(arg1)∂(arg2) ]   (6)


Figure 4 shows diagonal entries of the Hessian of uz, corresponding to cases where arg1 = arg2. As expected, the second derivative with respect to slip is zero, since uz depends linearly on slip. In contrast, the second derivatives with respect to nonlinear parameters exhibit distinct spatial patterns, reflecting the complex ways in which each parameter influences the surface deformation.

Fig. 4

Diagonal Hessian of vertical displacement uz with respect to fault parameters, computed by hessian method.

click on image to open in a new tab

Someya et al. (2025)


3.4 Example Application: Parameter Estimation by Loss Function Optimization

In this subsection, we demonstrate how fault parameters can be estimated from observed displacement data using gradient-based optimization. Rather than using real geodetic observations, we generate synthetic data by adding random noise to surface displacements obtained from forward modeling.

We begin by computing displacements using the same fault parameters as in Figure 1. Gaussian random noise with an amplitude of 0.05 m is then added to each component (ux, uy, uz) (Figure 5). Given these synthetic observations, we estimate the fault parameters by minimizing the misfit between observed and calculated displacements. The optimization is performed using the Adam optimizer over 2000 epochs. The core part of the code is excerpted as follows:


import torch
from OkadaTorch import OkadaWrapper

okada = OkadaWrapper()

params = {  # initialization
    "x_fault": torch.tensor(
        0.0,
        requires_grad=True
    ),
    "y_fault": torch.tensor(
        10.0,
        requires_grad=True
    ),
    "depth": torch.tensor(
        1.0,
        requires_grad=True
    ),
    "length": torch.tensor(
        150.0,
        requires_grad=True
    ),
    "width": torch.tensor(
        60.0,
        requires_grad=True
    ),
    "strike": torch.tensor(
        200.0,
        requires_grad=True
    ),
    "dip": torch.tensor(
        45.0,
        requires_grad=True
    ),
    "rake": torch.tensor(
        300.0,
        requires_grad=True
    ),
    "slip": torch.tensor(
        10.0,
        requires_grad=True
    )
}

optimizer = torch.optim.Adam(
    [
        p
        for p in params.values()
        if p.requires_grad
    ],
)

for iter in range(2000):

    optimizer.zero_grad()

    ux, uy, uz = okada.compute(
        coords,
        params,
        compute_strain=False,
        is_degree=True,
        fault_origin="topleft"
    )

    loss = 0.5 * (
        (ux - ux_obs) ** 2 +
        (uy - uy_obs) ** 2 +
        (uz - uz_obs) ** 2
    ).sum()

    loss.backward()

    optimizer.step()


Fig. 5

Synthetic observation data generated by adding random noise to the forward modeling results. The grid interval is 0.25 degrees.

click on image to open in a new tab

Someya et al. (2025)


Fig. 6

Displacement components computed using the initial fault parameters at the start of the optimization.

click on image to open in a new tab

Someya et al. (2025)


Fig. 7

Estimated displacement components computed using the optimized fault parameters.

click on image to open in a new tab

Someya et al. (2025)


Fig. 8

Evolution of the loss function over 2000 optimization epochs.

click on image to open in a new tab

Someya et al. (2025)


Table 1

True values of fault parameters used in numerical experiments [32], initial guess before optimization, and final values after optimization. Units are km from x_fault to width, degrees for strike, dip, and rake, and m for slip.

click on image to open in a new tab

Someya et al. (2025)


Note that we do not explicitly call the gradient method here. Since the entire model is written in PyTorch, gradients can be automatically computed by defining a loss function and calling loss.backward(). This allows for seamless integration into PyTorch’s optimization pipeline.

Table 1 (middle row) and Figure 6 show the initial fault parameter values and the corresponding displacement components. Table 1 (bottom row) and Figure 7 show the final optimized parameters and the displacement components they produce. The evolution of the loss function is also shown in Figure 8.

All estimated fault parameters are reasonably close to their true values, indicating successful convergence of the optimization. However, some trade-offs between parameters are apparent. For example, both depth and slip are overestimated, suggesting that similar surface displacements can be explained by different combinations of fault geometry and slip amplitude. We note that for some parameters, particularly the fault location parameters x_fault and y_fault, the choice of initial values can have a strong impact on optimization. If the initial guess is too far from the true values, the solution may diverge. In practical applications, it may be advisable to fix such sensitive parameters and optimize only the remaining ones.

The purpose of this example is not to propose a robust inversion framework, but rather to illustrate that gradient-based parameter optimization is straightforward when using a fully differentiable implementation. Applying this technique to real data would require more advanced treatment.

4 Conclusion and Outlook

We have presented a PyTorch-based implementation of the Okada model for computing displacements and strains due to a point or rectangular dislocation source in a 3D elastic half-space. The implementation is differentiable, vectorized, and easily extensible.

The differentiability of the model opens up a wide range of potential applications. Gradient-based inversion of fault parameters can be performed by leveraging PyTorch’s built-in optimizers such as Adam, eliminating the need to implement optimization routines from scratch. This enables efficient estimation of fault geometry and slip distribution from geodetic observations such as GNSS or InSAR. While the framework is broadly applicable, our experiments also highlight that certain parameters (e.g., fault location) can pose challenges for optimization due to sensitivity or non-uniqueness.

Sensitivity analysis and uncertainty quantification can be performed using first- and second-order derivatives (gradients and Hessians) with respect to fault parameters. The availability of exact gradients makes the model particularly suitable for gradient-informed Bayesian inference methods such as Hamiltonian Monte Carlo (HMC), which can provide probabilistic estimates of parameter uncertainty [33, 34, 35].

The differentiable nature of the implementation also enables seamless integration with other PyTorch-based machine learning (ML) models, including physics-informed neural networks [36, 37]. For example, if a ML model is trained to predict fault slip distributions from geometric or frictional properties of faults, its output can be directly fed into our Okada implementation to compute resulting surface deformation. Similarly, the output of our OkadaTorch model can be combined with differentiable tsunami solvers or ML-based surrogate models. These connections enable the construction of end-to-end differentiable models, where model components ranging from fault mechanics to tsunami propagation are represented in a unified way.

Strucural elements

Columns

Hinzen (2009)

Figures

Fig. 4

Lines show the amplitude decreases of the pure rocking motion of a slender block for different starting positions, θ0, with progressing number of cycles (after Housner, 1963). The crosses show the amplitudes from corresponding experiments with the numeric model of a rocking block with the dimensions shown in Figure 2. The inset in the upper right corner shows the time series of the angular displacement for the θ0/α ratio of 0.999.

click on image to open in a new tab

Hinzen (2009)


Fig. 10

Influence of the coefficient of friction on the toppling direction for two measured strong ground motions, GM23 (top row) and GM20 (bottom row) from Figure 8. The size of the circles, which indicate the impact points of the center of mass, varies with the coefficient of static friction μs (see the legend). Columns have the same dimensions as those in Figure 9, which also gives further explanation.

click on image to open in a new tab

Hinzen (2009)


Abstract

Since the early days of modern seismology, toppled artifacts such as tombstones and single columns have been used in the aftermath of earthquakes to deduce parameters of site-specific ground motions. The artifacts were generally treated as rigid bodies. Later, the theory of rigid block movements was also applied to precariously balanced rocks toppled by earthquakes. While the movements of a single rocking block can be described analytically, slide-rocking movements, bouncing, and multiple block systems require a numerical approach. We use multiple rigid block models with viscoelastic coupling forces in combination with full 3D ground motions (measured and synthetic) to analyze the dynamic response of building elements, relevant for archaeoseismological studies. First, the numeric modeling results are verified by comparison with analytically determined rocking motions of a single rectangular block. Stiffness and damping parameters of the coupling forces are adjusted to results from analog experiments with a rocking marble block. A model of a monolithic column and one consisting of seven drums is used to test the influence of the geometry and friction on the toppling behavior. The main question addressed in this study is whether toppled columns give a clear indication of the back azimuth toward the earthquake source. Input motion from 29 strong-motion records indicates little correlation between downfall directions and back azimuth. Clearly directed horizontal ground movements tend to topple the columns in the transverse direction. More complex ground motions result in quasi-random downfall directions. The friction coefficients have a minor influence on the downfall directions. Synthetic ground motions for two earthquakes with different source mechanism show toppling directions toward and away from the source as well as in the transverse bearing. However, it is not straightforward to deduce a reliable source location from the inversion of the toppling directions.

Introduction

In the study of preinstrumental earthquakes, historical seismology and palaeoseismology are well-established branches of seismological sciences. Techniques to evaluate ground motions and parameters of causing earthquakes that have left their mark in written documents and in the near-surface geology were developed. Ever since man-made structures have been erected, earthquakes have also left their marks on these constructions. However, damages in archaeologically excavated buildings or continuously preserved monuments are often hard to unravel in terms of the causative effects. The new branch of seismological sciences, archaeoseismology, is defined as “the detailed study of preinstrumental earthquakes that, by affecting locations of human occupation and their environments, have left their mark in the archaeological record” (Buck and Stewart, 2000). Following this definition, the detailed study of earthquakes is the focus, and compilation, modeling, and interpretation of damage data is a means to an end.

The main questions to be answered by archaeoseismic investigations are (1) how probable is seismically induced ground motion as a cause of damage observed in man-made structures from the past, (2) when did the damaging ground motion occur, and (3) what can be deduced about the nature of the causing earthquake (Galadini et al., 2006). All three questions should be answered before results from archaeoseismic case studies can be included in seismic hazard analyses. While the first problem requires input from multiple disciplines including civil engineering, geophysics, and geotechnics, the second is a task for the geological sciences and archaeometry. The third question requires input from several seismological specialties ranging from seismotectonics to source studies, wave propagation, and site-effect modeling to soil–building interaction. The two main parameters to be extracted from these studies are the location and a measure of the strength of the causing earthquake, where both are often intrinsically tied to each other. While the macroscopic degree of damage is directly connected to the nature of ground motion at the site, many techniques from macroseismic data analysis can be adopted; determination of the direction of ground motion that caused damage or the wave propagation direction, which is even more complicated, remains a challenge in archaeoseismology.

Several case studies have been published in which surface rupturing of the fault plane directly affected man-made structures (i.e., Galadini and Galli, 1999; Galli and Galadini, 2001; Meghraoui et al., 2003; Galli et al., 2008; Marco, 2008). In these cases the location of the activated fault section is evident and source parameters such as surface rupture displacement can, under favorable conditions, be determined within small ranges of uncertainty. However, in cases where the activated segment of a fault is remote from the site with archaeological findings of building damages (archaeo-damages), source identification is a challenging task. No systematic studies or established methods presently exist to deduce the location of the rupturing fault from archaeo-damages. Several case studies purported to infer back azimuth to the activated parts of a fault from directional features in archaeo-damages (Korjenkov and Mazor, 2003). However, these interpretations usually suppose a very simple behavior for site-specific ground motions and do not consider the complexity of an extended seismic source and the uncertainties imposed by either the complexity of or randomness in the reaction of building components.

In the seismic design of modern buildings, finite element models are frequently used to study the behavior of the complete structure or crucial components of the structure (i.e., Meskouris et al., 2007). Most important in these kinds of studies are the correct modeling of the elastic or nonlinear material behavior to deduce the capacity of concrete beams, steel frames, shear walls, or wooden beams (Hinzen and Weiner, 2009). While finite element calculations predict the dynamic load under which a certain component will fail, the movement of structural parts of a building in the collapse phase cannot be modeled. The latter parameter is important to analyze directional features in archaeo-damages. Well-preserved ancient buildings were often constructed from blocks of natural stone, sometimes without any cementation. This was often the case in classic Greek buildings. For such structures it is feasible to use rigid block models and Newtonian mechanics to study the block movement and interaction as a first modeling attempt (Sinopoli, 1995; Papantonopoulos et al., 2002; Psycharis, 2007). A related problem is that of the dynamic stability of precariously balanced rocks, which have been used as low-resolution strong-motion seismoscopes (Brune, 1996). Anooshehpoor et al. (2004) used a numeric approach to model the 2D dynamic response of rocks to arbitrarily complex acceleration time histories (Purvance et al., 2008).

In this study we adapt rigid block techniques to the needs of archaeoseismology. Specifically, we regard linear viscoelastic coupling forces with finite friction in multiple block systems and true 3D ground-motion excitation. We use a numeric rigid block model of two cylindrical columns regarded as simple archaeo-seismoscopes. One monolithic column and one column consisting of seven separate column drums is used to study systematically the effects of (1) the columns’ slenderness, (2) changes in frictional coefficients, and (3) variability of measured and synthetic ground motions on the downfall directions.

Directional Features in Archaeo-Damages

In his famous work about the Neapolitan earthquake in 1857, Robert Mallet (1862) not only prepared the ground for evaluating earthquake strength with macroseismic methods, he also tried to infer the earthquake location from directional damage features. Without a scientific basis, still being actively sought (Ambraseys, 2006; Marco, 2008), the practice suggested by Mallet (1862) should not be applied. While Mallet used fresh traces of directional damage, in archaeoseismology such features have gone through altering processes, making it more difficult to deduce accurate directions toward the earthquake source.

As summarized by Galadini et al. (2006, and references therein), typical earthquake effects on constructions are (1) cross fissures in the vertical plane due to shear forces, (2) corner expulsion due to orthogonal motion of walls, (3) lateral and rotational horizontal and independent motion of blocks within a wall, (4) height reduction due to vertical crashing, (5) deformation of arch piers including collapse of key stones, (6) wall tilting and distortion, and (7) rotation or toppling of pillars or parts of it and drums of columns. Additional photos of typical damages are given by Marco (2008). The direction of any of these seismogenic damage patterns always results from the coaction of the orientation of the structure or structural component and the orientation of the ground movement, which is influenced by the source characteristics and site conditions.

Korjenkov and coworkers (i.e., Korjenkov and Mazor, 1999a,b, 2003; Al-Tarazi and Korjenkov, 2007; Korzhenkov et al., 2009) have given examples how directionalities in archaeoseismic damage can be quantified for a certain site. This quantification works best when carried out during an ongoing excavation. Because this is not always feasible, measurements are taken from preserved ruins (Galadini and Galli, 2001) or from the documentation of former excavations (i.e., Hinzen and Schütte, 2003). Korjenkov maps the direction of cracks and rotations of blocks with respect to the trend of walls. At sites with numerous damaged walls, a statistical approach can reveal preferred directions in the damage pattern. While such preferred directions of block shifts, rotations, toppling of wall fragments or complete walls, and toppling of columns provide strong arguments for significant ground-motion amplitudes in a certain direction, it is not straightforward to deduce the back azimuth to the causing earthquake from this direction. Near-fault strong ground motions are influenced by the source mechanism, rupture process details, distribution of asperities, fault plane geometry and extension, wave spreading conditions, and site conditions (i.e., Erdik and Durukal, 2004, and references therein). Also, secondary earthquake effects due to deformation of soft subsoils that form directional features such as foundation cracks and inclined walls (Hinzen and Schütte, 2003) should not be mistaken for the bearings toward the earthquake source.

Among the most obvious and promising directional archaeo-damages are toppled columns (i.e., DiVita, 1996; Nur and Ron, 1996; Marco, 2008) and columns with displaced column drums (Stiros, 1996; Bottari, 2005; Psycharis, 2007). As rotation-symmetrical construction elements, columns should react similarly to ground motions in any direction when freestanding and not connected to neighboring structural elements. This feature makes columns a good universal seismoscope. Even though such freestanding columns are rare in cultural heritage, the independence from a fixed trend of the structure with respect to unknown ground motions makes them a versatile tool to study basic toppling effects. Even the simplest object, a monolithic block on a plane subsurface, demonstrates a complex dynamic behavior including stress discontinuity, structural damping, contact friction, and impact (Sinopoli, 1995); all of which can influence toppling behavior and downfall directions. Many open questions remain about the particular influence of each of these factors.

Several authors have studied the dynamic behavior of cylindrical structures and classical columns. Koh and Mustafa (1990) studied the free rocking motion of rigid cylinders for various initial conditions and a stationary foundation during the motion of the cylinder. They numerically integrated the exact equations of motion of the model and mapped the boundary between toppling and not toppling. Koh and Hsiung (1991a,b) extended the 2D model to 3D rocking, rolling, and uplift of a rigid cylinder when subjected to ground motions, showing that 3D motion is significant under earthquake-like excitations. Mouzakis et al. (2002) used a 1:3 analog model of a multidrum column from the Parthenon of the Acropolis of Athens, even made from the same material as the original. Scaled earthquake ground motions in two- and three-dimensions were used to drive a shaking table with forces insufficient to topple the model. They found large deformations during the shaking, which were not necessarily reflected by the residual displacements at the end of the tests. A significant influence of imperfections of the model specimen and a very high sensitivity to even small changes in the input motion parameters were observed. In an accompanying article, Papantonopoulos et al. (2002) successfully used the distinct element method to numerically simulate the behavior of the same column. Konstantinidis and Makris (2005) also used numerical models of multidrum columns represented by a 2D discrete element model allowing rocking, sliding, and slide-rocking to show that relative sliding between drums happens even when the g-values of the ground accelerations are less than the coefficient of friction. They concluded that typical classical columns can survive the shaking from strong ground motions near the causative fault of earthquakes with moment magnitudes 6.0–7.4. Additionally, they found a more controlled seismic response of multidrum columns than monolithic columns of the same size. Psycharis (2007) made a backward analysis of a column of the temple of Olympios Zeus in Athens to investigate the seismic history of the area during the 2000 yr since the building was erected. A 3D numeric model of a single and double column structure allowed the author to constrain the maximum ground velocities at the site by comparing the model behavior with the current status of the real structure.

By applying archaeoseismologic methods, the orientation of damaged structures should be recoverable in most cases (i.e., Korjenkov and Mazor, 1999a), although usually little or nothing is known a priori about the nature of the ground movement. For elongated structural elements (i.e., a simple freestanding wall) the angle between the polarization of the ground motion and the trend of the element is decisive for estimating dynamic reaction of the structure. In contrast, rotation-symmetrical building elements (i.e., freestanding columns) do not exhibit this dependency. Therefore, to investigate correlations between ground-motion polarizations, back azimuth, and toppling directions, we will limit this study to the case of freestanding cylindrical columns.

Rocking of Rigid Blocks

Long before a strong-motion instrumentation was available, Milne (1881, 1885), Perry (1881), and others used the theory of dynamic block structures to deduce earthquake ground accelerations from toppled monumental columns and tombstones. A fundamental article on the theory of rigid block movements by Housner (1963) helped to explain observations made during the large Chilean earthquake of May 1960. Augusti and Sinopoli (1992) presented a comprehensive summary on the dynamic modeling of large block structures and Sinopoli (1995) reviewed studies of large block structure dynamics. Brune and Whitney (1992), Brune (1996), Anooshehpoor et al. (1999, 2004), and Zhang and Makris (2000) applied rigid block movement models to interpret precariously balanced rocks and a steam engine, the latter overturned during the great San Francisco earthquake of 1906.

Fig. 1

Cross section of a rectangular block of height h and width b in a rocking experiment. θ is the inclination of the block; R is the vector from the center of gravity, cg, to the actual rocking corner A; and A′ is the opposite rocking corner. The angle α is a measure for the ratio of h/b. Dashed lines indicate the equilibrium position of the block. The following drawings show schematically the motion types of the block: (b) rest; (c) sliding; (d) rotation (rocking); (e) slide rocking; (f) translational jump; and (g) rotational jump.

click on image to open in a new tab

Hinzen (2009)


We briefly introduce the problem of rocking rigid block dynamics in order to describe the analog and numeric experiments presented in the main part of this article; a comprehensive description of the theory can be found in Housner (1963) and Augusti and Sinopoli (1992). Figure 1 shows the cross section of a rigid body in a rocking motion. The block has height h and width b; the half-diagonal,

R = √[(h/2)2 + (b/2)2],

is defined as the distance from the center of gravity, cg, to the actual center of rotation of the block, A and A′, respectively. The angle between the longer block side, which coincides with the vertical direction when the block is at rest, and the line R is α, and the inclination (rotation) of the block is θ. Housner (1963) solved the equations of motion for the rocking block for one degree of freedom, namely the rotation around the corner points A and A′ (Fig. 1d). This movement constraint specifies that (1) the friction at the corner points is large enough that no sliding between the block and the base occurs as in Figure 1c and (2) the block does not bounce during the movement through the static equilibrium (Fig. 1f). The equation of motion of the free rocking response of a 2D rigid block without sliding, slide rocking, or free flight behavior was given by Housner (1963):

I0 θ̈ = −WR sin(α − θ) (1)

in which

I0 = (4/3)mR2

is the mass moment of inertia of a homogeneous rectangular block about corner A and

W = mg

is the weight of the homogenous block, m and g are the block mass and acceleration of gravity, respectively.

For slender blocks (sin α ≈ α), equation (1) can be written as (Housner, 1963; Aslam et al., 1980):

θ̈ − p2θ = −p2α (2)

in which

p = √(WR/I0) = √(3g/4R).

In order to start a forced rocking motion, a horizontal acceleration a is necessary that fulfills the condition (Housner, 1963; Augusti and Sinopoli, 1992):

a/g ≥ b/h (3)

Under more realistic conditions, energy dissipates during each impact of the block on the base. For inelastic impact (no bouncing), the reduction of kinetic energy, r, depends on the square of the ratio of angular velocities before, θ̇i, and after, θ̇i+1, an impact, respectively (Housner, 1963; Aslam et al., 1980; Augusti and Sinopoli, 1992):

r = [(1/2)I0θ̇i+12] / [(1/2)I0θ̇i2] = (θ̇i+1/θ̇i)2  (4)

and for slender blocks the coefficient of restitution is:

η = √r = (2 − b2/h2) / [2(1 + b2/h2)] ≈ 1 − (2/3)α2  (5)

Housner (1963) showed that in this case the amplitude θn of the nth cycle can be written as:

θn = 1 − √[1 − rn (1 − (1 − θ0/α)2)]  (6)

and the half period of the rocking motion is:

T/2 = 2√(I0/WR) tanh−1 √[rn (1 − (1 − θ0/α)2)]  (7)

Amplitudes and the half period of the rocking motion decay rapidly with the number of cycles. Increasingly high-frequency movements follow a few slow rocking motions with large amplitudes. Under less ideal conditions (bouncing during impacts and sliding due to reduced friction), amplitude decay proceeds even more rapidly.

The sliding component of the movement is governed by the static coefficient of friction, μs, and the slenderness of the block. For the free motion of the block Augusti and Sinopoli (1992) showed that the inequality:

μs ≥ [3(b/h)] / [4 + b2/h2]  (8)

allows separating the conditions under which pure rocking and slide rocking exists. If the condition of equation (8) is not fulfilled, slide rocking, controlled by the kinetic friction coefficient μk, will start. For small angles for each b/h, a value μs exists above which only rocking will occur until the block returns to a state of static equilibrium (Augusti and Sinopoli, 1992).

Numeric Model

Basic Model Parameters

The program code Universal Mechanism (Pogorelov, 1995, 1997) was used for all numeric models in this study. After defining the physical parameters of the bodies, the types and degrees of freedom of the joints between blocks and the types and parameters of the contact forces, the code generates the equations of motion of the mechanical system. An implicit second order method with variable step size was used to solve the equations of motion. Error tolerance was usually set to 10−6. First, a solution for the static model was calculated and the resulting coordinates were used as initial conditions for the dynamic tests.

Fig. 2

(a) Analog and (b) numeric models used to verify stiffness and damping of the contact forces. An accelerometer was cemented to the top of the 6 × 8 × 30 cm marble block to monitor the rocking movements of the block. The wire-frame virtual block is inclined at an angle of 11.3° close to its indifferent equilibrium (θ0/α = 1). An animation of the rocking-block model is available in the electronic edition of BSSA.

click on image to open in a new tab

Hinzen (2009)


A dual analog and numeric experiment was carried out to deduce basic parameters for further calculations and to validate the models. For the analog rocking tests, a marble block of 6 × 8 × 30 cm, sitting on a marble plate of 2 cm thickness and cemented to a foundation, was constructed (Fig. 2). With a mass of

m = 4267 g,

the block has a density of

2.96 Mg m−3.

As the block rotates over the longer base (8 cm), h/b comes to 5.0. The motion of the block during the rocking experiments was monitored with a miniature accelerometer mounted on the top of the block (Fig. 2). Acceleration time history was recorded with a 24 bit analog-to-digital converter at a sampling frequency of 25 kHz (Fig. 3).

Fig. 3

Measured (bottom) and calculated (top) acceleration of the top of the marble block from Figure 2 from a rocking experiment. Starting inclination of the block was θ0 = 10° and the ratio of h/b was 5.0. The short bar underneath the second impact indicates the zoomed time window shown in the inset. Here the trace shown as a gray variable area plot is the acceleration measured during the rocking of the analog block. The black seismogram is the result of the numeric experiment using stiffness and damping of 1.2 × 107 N/m and 0.36, respectively. Coefficients of static and dynamic friction were 0.7 and 0.6, respectively.

click on image to open in a new tab

Hinzen (2009)


A numeric model of a block of similar size (Fig. 2) was used for comparative calculations. In the numeric model the individual bodies (here, base-block and rocking marble block) are treated as rigid. During the rocking-block experiments the base was fixed. The marble block is connected to the base through a six degrees of freedom joint and a viscoelastic contact force, including a sliding and a sticking mode. During sliding, the contact force f is of Coulomb friction type:

f = −μkFN sign(v)  (9)

where FN is the normal force on the friction surface, μk the coefficient of kinematic friction, and v the sliding velocity.

The sticking–sliding transition occurs when:

|f| ≥ F0  (10)

where F0 is the maximum value of the static friction force:

F0 = μsFN.

In the sticking mode, the linear viscoelastic friction force is:

f = f0 − c(x − x0) − dv  (11)

Here c and d are the stiffness and damping coefficients, respectively.

In a series of numerical rocking tests, c and d were varied between 1 × 106 and
1 × 109 N/m

and

0.01 and 0.99,

respectively. As shown in equation (7), the time between two subsequent impacts of the rocking block on the base is strongly dependent on the energy reduction at each impact and hence on the stiffness. Therefore, the synchronicity of the impacts in the twin experiment was the first criterion in the parameter adjustment. Figure 3 compares the acceleration measured at the top of the analog block with the corresponding calculated time series assuming here a contact stiffness of

1.2 × 107 N/m.

The time step of the output during the calculation was

4.0 × 10−5 sec,

corresponding to the sampling rate of the measurement. In the first 5 sec of the record up to the eighteenth impact, the impact time in both experiments matches almost perfectly. In the balanced time of the experiment, impact times successively deviate due to the increasing influence of the imperfectly flat bottom of the analog marble block.

This also brings the movement to a halt about 1.2 sec earlier than in the numeric experiment. The insert in Figure 3 shows a detailed section of the acceleration impulse of the second impact. The strong positive acceleration impulse indicates the impact of the block on the base, followed by a short (~2 msec) phase of free fall, as indicated by the acceleration of −1.0g.

and a concurrent damped oscillatory movement. The free-fall phase is due to a small bouncing effect after the block hits the base. This phase was measured in both the analog experiment and the numerical simulation. The duration of the free-fall time and the amplitudes of the damped oscillation were matched by adjusting the damping coefficient in a trial and error procedure. The results shown in Figure 3 were achieved with a damping coefficient of 0.36. As long as no initial sliding of the block occurs, the coefficient of friction has minor influence on the impact times and amplitudes. During the parameter optimization of this dual experiment, the coefficients of static and dynamic friction in the calculations were kept constant at 0.7 and 0.6, respectively.

Verification Tests

Fig. 2

(a) Analog and (b) numeric models used to verify stiffness and damping of the contact forces. An accelerometer was cemented to the top of the 6 × 8 × 30 cm marble block to monitor the rocking movements of the block. The wire-frame virtual block is inclined at an angle of 11.3° close to its indifferent equilibrium (θ0/α = 1). An animation of the rocking-block model is available in the electronic edition of BSSA.

click on image to open in a new tab

Hinzen (2009)


The block from the numeric experiment (Fig. 2) was used next to simulate the free rocking ground motions for the starting rotation angles

    0.2α ≤ θ0 ≤ α

Amplitudes for the first 10 cycles of movement from the calculation were compared with the analytic values as shown in Figure 4. In order to match the analytical and the numeric results, the energy loss ratio, r, had to be made 1.4% larger in the analytical calculation than suggested by the geometry to compensate for energy losses due to small bouncing effects not included in the analytic Housner (1963) model.

Several studies have used horizontal sinusoidal ground motions to simulate a Housner-block model (i.e., Housner, 1963; Ishiyama, 1982; Sinopoli, 1991). Anooshehpoor et al. (1999, 2000) and Zhang and Makris (2000) presented analytic and numeric solutions to the problem of a freestanding block, respectively, exposed to a one-sine pulse. The latter showed that two modes of overturning exist, one with and one without an impact of the block on the base before it overturns. We used their results to test our numeric model by excitation of the block with a single sinusoidal impulse.

The modeled block has the dimensions

    h = 3.113 m

and

    b = 0.795 m

resulting in

    α = 0.25

    p = 2.14

and a coefficient of restitution of

    η = 0.9

Frictional parameters were kept the same as in the previous experiment. Contact forces were only implemented between the base of the moving block and the pedestal. Therefore, after overturning, the block can penetrate the pedestal. Figure 5 shows the results of three calculations with maximum acceleration amplitudes of

Fig. 5

Normalized rotation (solid curves), angular velocity (dashed curves), and snapshots of a rigid block subjected to a single sine pulse (thin curves). Parameters of the block are p = 2.14 rad/sec, α = 0.25 rad, and η = 0.9, and the single sine pulse has a circular frequency of ω = 5p (same as in Zhang and Makris, 2000). Number-labeled markers in the time history plots in the left-hand row of panels indicate the moment when the snapshots of the block movement (right-hand row of panels) were taken. Top row: maximum acceleration of A = 6.32 αg, overturning in positive x direction after one impact; middle row: A = 6.33 αg, no overturning; bottom row: A = 7.18 αg, overturning in negative x direction without impact. Differences in the normalized rotation between the numeric experiment and the theoretical values are indicated in gray. An animation of the block movements for the three test cases is available in the electronic edition of BSSA.

click on image to open in a new tab

Hinzen (2009)


    (1) A = 6.32αg

    (2) A = 6.33αg

    (3) A = 7.18αg

repeating the calculations of Zhang and Makris (2000). Rotation and angular velocities follow those from the previous study. In case (1) the block experiences one impact before it overturns in the direction of the movement of the first half cycle of the sine pulse. The slightly larger acceleration in experiment (2) does not overturn the block. In test (3) the block overturns in the opposite direction of the movement of the first half cycle of the acceleration pulse without an impact on the base. The agreement of the block movements with the analytically predicted results of Anooshehpoor et al. (1999, 2000) and numerical calculations of Zhang and Makris (2000) confirm the capability of our model to simulate pure rocking motion of a single block.

As outlined by Zhang and Makris (2000), the demand on friction to sustain pure rocking motion depends on the level of acceleration amplitude of a one-sine pulse. As the archaeoseismic application of rigid block models requires the use of true 3D ground motions, where conditions for pure rocking motion might be violated, the effects of appropriate finite friction forces at the edges of multiple block structures must be approximated.

Fig. 6

Time history of the horizontal position of the center of the base of a marble block (Fig. 2) from numeric experiments with variable static and dynamic coefficients of frictions (see legend). The curves for a static coefficient of friction of 0.7, 0.6, 0.5, and 0.4 almost match exactly; so only one symbol is shown in the legend. Small arrows indicate the time and horizontal position of the center at the moment of impact of the rocking block on the base.

click on image to open in a new tab

Hinzen (2009)


In order to test the performance of the numeric model with varied coefficients of friction over a wide range of values, larger than those expected for real situations in a classic monument, a series of rock-sliding tests were calculated. Figure 6 shows the horizontal position of the center of the contact area of the marble block from the previous tests with respect to the base as a function of time in a free rocking experiment. Stiffness and damping of the contact element were those from the previous twin experiment. For static coefficients of friction between 0.7 and 0.4 the movement history is almost identical. The motion is pure rocking about the corner points A and A′ in Figure 1. The points in time of the impact of the marble block agree with the zero position of the center of the contact surface indicating that no corner point sliding occurred during the tests. For the next smaller static friction test with

    μs = 0.3

the displacement curve deviates from the previous ones. After the first impact at 0.386 sec, a small amount of sliding motion leads to a shift of the displacement curve with respect to the previous experiments. With a friction coefficient of

    μs = 0.275

the sliding component in the movement starts at the beginning of the experiment. Beginning with the second impact of the block, the impacts occur alternating earlier and later than for the pure rocking motion due to a significant component of sliding movement. A further decrease of the static friction to

    μs = 0.250

results in a strong sliding of the contact point A; as most of the potential energy is consumed by this sliding motion, there is only one impact followed by rocking with highly reduced amplitudes. For small friction coefficients of

    μs = 0.225

and

    μs = 0.2

the rocking component of the movement disappears.

Numeric Archaeoseismic Test Model

Fig. 7

Numeric archaeoseismic test model of two columns on a common base. The columns have the same dimensions; however, the right column is monolithic and the left one is composed of seven column drums, identical in size. The grid width of the horizontal plane in the perspective view is 0.5 m in both the x and y directions.

click on image to open in a new tab

Hinzen (2009)


After the parameters of the contact forces were determined experimentally for marble, a numeric archaeoseismic test model of two columns was used to study the influence of geometry parameters, friction changes, and the nature of ground motion on the collapse behavior. Figure 7 shows a perspective view of the model. The base block measures 5 × 5 m in the horizontal directions and is 1 m high; the total mass is 74 metric tons. With a height of 3.5 m and a diameter, d, of 0.58 m as shown in Figure 7, the mass of the monolithic column is 2772 kg. A single drum of the structured column has a mass of 231 kg. The center of each column is shifted ±1.5 m from the center of the base block in the x direction. Contact stiffness was increased by a factor of 10 compared to the twin experiment to 1.2 × 108 N/m so that the local contact frequency ωcon = √(c/m) remained well above the main frequencies of the model, which are in the range of 3–5 Hz.

For the structured column, contact forces were implemented between the bases of neighboring column drums and between the drums and the pedestal. As exact stiffness values of the contact between the individual drums of the structured column depend on the dynamic movement and cannot be implemented in the current model, the same stiffness was applied for all contacts. There is no toppling interaction between the two columns implemented in the model, that is, when one column topples and falls into the direction of the other they do not influence each other’s motion. However, there is a minor feedback through the base block. When the monolithic column overturns first, the impact impulse to the base can be seen in the acceleration record of the movement of the drums of the structured column. As it is a spike of short duration, it does not appear to influence downfall directions. The base block undergoes pure translatory motions in three dimensions; no rotational motion was used so far. The movement is defined through x, y, and z displacements with respect to a fixed coordinate system (Fig. 7). Tests with single columns in the center of the base block showed essentially the same results as the twin model. Columns were considered as overturned when at the end of the experiment one or more drums had impacted the pedestal.

For the following tests, measured strong ground motions were retrieved from two resources. All records from the 28 September 2004 Parkfield earthquake database of the Consortium of Organizations for Strong Motion Observation Systems (COSMOS) Strong Motion Program (Archuleta et al., 2005) with an epicentral distance smaller than 30 km were selected (see the Data and Resources section). In addition, the European strong-motion database (Ambraseys et al., 2000) was searched for time series recorded at distances smaller than 40 km and exceeding a peak ground acceleration (PGA) of 2.0 m/sec2 (see the Data and Resources section). In total 29 three-component records (Table 1) were prepared for the numeric tests. The acceleration data were band-pass filtered between 0.1 and 20–30 Hz, depending on the frequency range of the original record, and linear trends were removed before ground displacement was restituted, which served as translatoric ground-motion input. Table 1 lists the epicentral distances, back azimuths, PGA, and the ratios of peak ground velocity (PGV) and acceleration (PGV/PGA).

In a recent article Purvance et al. (2008) showed that both PGA and the PGV/PGA ratio, as an intensity measure correlated with the duration of the predominant acceleration pulse, are important indicators of the overturning potential of 2D rigid blocks. The mean period (Rathje et al., 1998) and the significant duration, the time between the 5% and 95% level of the Arias intensity, additionally characterize the records.

Variation of Geometrical Parameters

Fig. 8

Measured strong ground motion used in numeric toppling experiments of the two-column model. Top row: three components of the acceleration time histories of (a) Parkfield (2004) and (b) Kocaeli (1999), labeled GM23 and GM20 in Table 1, respectively. Bottom row: perspective view of the corresponding 3D hodograms of the ground displacement. The 2D ground motion on three mutually perpendicular planes is shown in addition. An animation of the ground movements is available in the electronic edition of BSSA.

click on image to open in a new tab

Hinzen (2009)


Two measured strong ground motions with different character that toppled the test columns in a pretest, denoted GM20 and GM23, were selected from the measurements listed in Table 1 and used in a first series of numeric experiments, where the h=d ratio was systematically varied and all other model parameters were kept constant. Figure 8 shows the acceleration time histories as well as a perspective view of the ground displacements. The latter analysis clearly shows that a simple push-pull mechanism toward or away from the earthquake cannot be expected with these measured time histories.

Ground motion GM23 (Fig. 8a) shows the largest displacement in the horizontal direction in one half-sine pulse toward the northeast, roughly at a 90° angle with respect to the back azimuth. This swing toward the northeast determines the downfall direction of both test columns, monolithic and structured, respectively, as shown in Figure 9. Maximum ground displacement in the vertical direction is only 24% of the maximum horizontal motion of 11.0 cm. All downfall directions group within a cone that opens 42°, with the median value for both columns at 34°. The only exception is the monolithic column with h/d = 5.0 that falls in the opposite direction. The bottom drum of the structured column with h/d = 8 is displaced to the west-southwest direction because it is pushed away from the downfall direction of the rest of the column by the weight of the toppling six column drums. The monolithic column does not fall if h/d ≤ 4.5, and the same holds true for the structured column if h/d ≤ 3.5. The impact times of the structured column are between 5.8 and 6.7 sec and the monolithic column impacts 6.0–6.5 sec after the start of the time series. Taking the time into account that the column needs to fall down, this corresponds to the time of the largest horizontal accelerations (Fig. 8). The only exception is the monolithic column, which fell in the opposite direction (h/d = 5) and required 12.6 sec to fall. For the structured column, the first impact of one of the drums was measured.

Fig. 9

Influence of the slenderness of columns on the toppling direction for two measured strong ground motions, GM23 (top row) and GM20 (bottom row) from Figure 8. Dashed lines show the back azimuth toward the earthquake, and the hodogram of the horizontal ground displacement is shown as gray lines, with the corresponding dx and dy displacement axis on the top and the right of the diagrams. The main diagrams show a bird’s-eye view of 10 × 10 m with the test columns in the center. On the left-hand side, the impact points of the center of mass of the seven drums of the multidrum columns are indicated by filled circles; the circle size varies with the h/d ratio as shown in the legend. The plots on the right-hand side show the impact points of the center of mass of the monolithic column model; symbol size is the same as for the multidrum columns. All test columns had common heights of 3.5 m. Examples of the animated column movements are available in the electronic edition of BSSA.

click on image to open in a new tab

Hinzen (2009)


Ground motion GM20 is of a different character compared to GM23 (Fig. 8). The overall displacement amplitudes and the duration are larger; however, the hodogram looks more like a bowl of spaghetti without a distinct directional pulse. During the arrival of the surface waves, the ground makes two semicircular movements in the horizontal plane. The maximum vertical ground displacement reaches 61% of the horizontal maximum of 21.2 cm. As shown in Figure 9 the downfall directions vary strongly with changing slenderness ratios for the structured column. The five structured columns with 6.5 ≤ h/d ≤ 9.0 fall down within a cone of 20° toward the west-northwest. A value of h/d = 6.0 causes a downfall to the northeast. In the case of h/d = 5.5, the downfall is almost in the opposite direction of the group of five. At h/d = 5.0, the column topples to the north, and a further decrease of the ratio results in downfall directions to the northeast and southwest. The most slender structured column (h/d = 3.0) does not topple. The same holds for the monolithic column with h/d = 3.0 and h/d = 3.5, respectively. The time of impact is significantly larger and more spread than in the case of GM23. The structured column impacts between 11.5 and 19.5 sec after the start with a systematic decrease of impact time with increasing h/d ratios. The monolithic column impacts after 12.3–16.9 sec. While impact times for 4.0 ≤ h/d ≤ 6.0 are almost constant, they also decrease with increasing h/d between 6.0 and 9.0. The downfall directions of the monolithic column are toward the north-northeast–north in a cone of 30° and toward the south-southeast, thus showing less variability than the structured columns.

Variation of Friction

In a second series of numeric experiments, the influence of coefficients of static and dynamic friction on potential toppling directions was tested. For the two ground motions GM23 and GM20 (Fig. 8), the static coefficient of friction was varied between μs = 0.1 and 0.9 in steps of 0.1, while the coefficient of kinematic friction μk was always set to 84% of μs. Friction coefficients less than 0.5 are unrealistic for classical columns of marble or similar material. However, the numeric experiments allow an exploration of the limits where reduced friction is influential. Geometry of the test columns was kept constant with an h/d ratio of 6.0 and a column height of 3.5 m.

For GM23 again the swing toward the northeast clearly determines the toppling direction of both test columns as shown in Figure 10. All downfall directions are within a cone opening ±15° around a direction of N30°E. The only exception is the north-northwest toppling direction of the monolithic column for an unrealistically low-static friction of μs = 0.2. The median of the downfall directions shows a 70° counterclockwise rotation with respect to the back azimuth. For the extremely small friction of μs = 0.1 both columns do not topple, but they slide at the base, reducing the induced momentum in the column to a level that is too small for toppling.

The second ground motion GM20 leads to significantly different downfall directions for the two column types, and the direction varies with changes in the coefficients of friction. The cone of 60° of toppling directions for the monolithic column includes the back azimuth (Fig. 10). The structured column falls in two directions, one cone of 45° points northeast and a second of 25° points north-northwest. However, the coefficient of friction does not appear to systematically determine downfall directions. While for μs = 0.4, 0.5, 0.7, and 0.8 the column falls in northeasterly directions, μs = 0.2, 0.3, 0.6, and 0.9 leads to a north-northwest downfall. Again, the columns did not topple with the extreme μs = 0.1.

Measured Ground Motions

All 29 ground-motion records listed in Table 1 were used to search for correlations between the toppling behavior of the column model and ground-motion parameters (PGA, PGV, and peak ground displacement [PGD]), the direction of largest horizontal acceleration, velocity and displacement impulse in the record, and the back azimuth toward the source.

Fig. 11

Overturning potential is shown in relation to PGD, PGV, and PGA, where the latter is indicated by the symbol size (the legend shows the scale). Cross symbols indicate that both columns survived the test; open circles are used if only the structured column fell, and the crossed circles indicate that both columns toppled. The labels correspond to the ground motion as listed in Table 1.

click on image to open in a new tab

Hinzen (2009)


The two column model with h/d = 6.0, μs = 0.7, μk = 0.6 and the same coupling forces as before was used to calculate downfall directions. Of the 29 ground motions, 13 toppled the structured column and 7 also toppled the monolithic column. Figure 11 shows the overturning potential for the 29 measured ground motions with respect to PGD, PGV, and PGA. Both columns overturn for all ground motions with PGV > 43 cm/sec and PGD > 10 cm. The only exception is ground motion GM15 with the largest PGV/PGA ratio of 0.34 sec in the north–south component. On the other hand, the PGA is only 1.27 m/sec2, and it has the largest mean period (Rathje et al., 1998) of all records used in this study with 1.97 sec. Below a PGD value of 10 cm, four ground motions overturn the structured column but not the monolithic one (Fig. 11). One of these ground motions (GM26) has a large PGA of 7.4 m/sec2. The other three have PGA values below 3 m/sec2 indicating that, in particular for the structured column, the phase relations among the three components and the duration of excitation can also be critical for the overturning potential. Several small amplitude oscillations with the right frequency can cause build-up of the movements of the column drums. The six ground motions with PGD < 10 cm and PGV < 20 cm/sec did not overturn any of the two test columns. Overturning potential also correlates with the Arias Intensity (Table 1). The structured and monolithic columns start toppling at IA > 0.4 m/sec and IA > 1.5 m/sec, respectively, and both topple for all ground motions with IA > 6.0 m/sec.

Fig. 12

Rose diagrams with 15° bin size show the differences between the direction of the largest horizontal (a) displacement, (b) velocity, and (c) acceleration, and (d) the back azimuth and the downfall direction of the test columns.

click on image to open in a new tab

Hinzen (2009)


For all measured ground motions, the azimuthal direction of the largest horizontal displacement, velocity, and acceleration was determined. The difference between these directions and the downfall direction of all toppled columns is shown in Figure 12. The clearest correlation in these rose diagrams with 15° bin size is found between the direction opposite to the largest velocity pulse and the downfall direction. By trend, the downfall correlates also with the 0° and 180° direction of the maximum displacement pulse; however, the direction of the maximum acceleration pulse does not seem to determine the downfall direction. The same holds true for the back azimuth; the corresponding diagram is shown in Figure 12.

Among the 16 cases where the columns did not fall, the maximum relative displacement between the bottom and top drum of the structured column was 6 cm. In one case, the bottom drum shifted 4 cm.

Synthetic Ground Motions

The last experiment uses synthetic strong-motion seismograms. These were calculated for a simple crustal structure with a Conrad discontinuity at 20 km, where P- and S-wave velocities increase from 5.8 to 6.5 km/sec and 3.4 to 3.8 km/sec, respectively, and a Moho at 35 km with upper mantle velocities of 8.0 and 4.5 km/sec for P and S, respectively. The QScmp code by Wang (1999) was used to calculate the Green’s functions for 25 surface stations. In order to avoid possible influence from a regular observation grid, stations were distributed randomly in a square region of 40 × 40 km centered at the epicenter (Fig. 13). The seismograms were calculated for two point source models both located at 10 km depth with a seismic moment of 4 × 1019 N m, roughly expressing magnitude 7 earthquakes. Point sources were chosen to produce a pronounced radiation effect and simple seismogram structures. It is evident that a point source is not a realistic scenario; however, if, for this simple source mechanism, downfall directions of the test columns do not allow a successful prediction of the epicenter, it is questionable that this works for complex extended sources. On the other hand, dynamic rupture models show that strong polarizations may occur, especially for high rupture velocities, which might produce clearer toppling patterns of columns than point sources. However, it should be noted that in archaeoseismological field cases most, if not all, rupture parameters are a priori unknown.

The first event was assumed to have a strike-slip mechanism on a subvertical (80° dip) north–south striking fault plane. For the second event of the same size, a normal faulting mechanism with a small strike-slip component (rake = 70°) on a 60° dipping and 30° striking fault was assumed. (Ⓔ Snapshots of the ground motion are available in the electronic edition of BSSA.) Source mechanisms and impact points of the toppled columns are shown in Figure 13. For the strike-slip earthquake at six sites, the structured column did not topple, and at an additional two sites, the monolithic column did not fall down. At several sites (i.e., west and east of the epicenter), the structured columns fell with the tops pointing toward the source and in the northwest corner of the map, the columns at two sites point clearly away from the source. However, though the source mechanism is known, there is no recognizable pattern in the downfall directions that would reliably predict the source location.

Fig. 13

Maps showing the toppling directions of columns exposed to the ground motions of (a) a strike-slip and (b) normal faulting earthquake. Open circles show the position of 25 sites, distributed randomly in a 40 × 40 km rectangle centered at the epicenter, which is marked by the corresponding equal area projection of the double-couple point source. Filled circles show the impact points of the seven drums of a structured column, and the arrowheads mark the impact point of the center of gravity of a monolithic column. The square in the lower right-hand corner of plot (b) measures 10 m and gives a scale for the impact points of the 3.5 m high columns.

click on image to open in a new tab

Hinzen (2009)


The same result applies in the case of the normal faulting mechanism (Fig. 13b). Here four structured and eight monolithic columns did not fall. In general, stations close to each other show similar behavior.

Discussion and Conclusions

Depending on the perspective (i.e., archeological versus seismological), different expectations from archeoseismological studies usually result. Archaeology seeks explanations for damage horizons in excavations, interprets the impact of the potential earthquake on cultural development, and recovers as much history as possible from a certain place or region. Seismology focuses on the causing earthquake itself and the mechanisms that produced the excavated damage pattern. In order to make archaeoseismic data useful for seismic hazard analysis, the questions of when, where, and how strong the causative earthquake was, are the most important ones to be answered. While the "when" is usually beyond the predictive capacity of seismological techniques, the "where" and "how strong" are challenging but appropriate tasks for seismologists.

The distance and strength of an archaeo-earthquake are intrinsically coupled and cannot be resolved in general. Even if this obstacle could be overcome, the question of a direction toward the epicenter remains open. Past attempts, including several case studies, concentrated on surmising this direction from directional damage patterns. Unfortunately, systematic approaches to develop archaeoseismic methods that make use of the modeling capabilities of engineering seismology are rare. Two arguments favor the use of rigid blocks as a first step in such models. (1) Clear directional archaeo-damages are often found in displaced large block structures, especially those that might have been constructed without cementing. Even if mortar was used to cement blocks, the tensile strength of the cementation is usually low and after an initial breaking, the mortar mainly influences the frictional parameters of interblock movements. (2) As only the final resting or downfall positions are preserved in the archaeological record, Newtonian mechanics are necessary to track the path of disintegrated wall or column elements and determine their impact positions. A clear shortcoming of rigid block models is the inability to forecast direction and degree of fracturing of intact blocks or structural elements. Additionally, it is usually much harder to link these damages to seismogenic causes than laterally or rotationally displaced blocks and toppled features.

We use a numeric model of two columns, monolithic and structured in seven drums, composed of rigid blocks and coupled by viscoelastic forces. Stiffness and damping parameters of the coupling forces are determined through the comparison with the measured rocking movement of a small analog marble block. Overturning of simple block structures by simple ground motions like single-sine pulses can still be handled analytically, provided that friction between the block and base is large enough to avoid sliding. Our numeric model successfully reproduces results of such analytical solutions. Effects of more complex ground motions (true earthquake movements), especially on multiple block systems, including limited friction, require the application of numerical models (i.e., Konstantinidis and Makris, 2005; Psycharis, 2007).

Test calculations with a variation of the slenderness of the columns in a wide range and subjected to measured strong ground motions of different character show clear differences for strongly and weakly linear polarized ground motions in the horizontal directions. If a clear directed pulse in a certain horizontal direction dominates ground motion, this pulse tends to topple the columns independent of the slenderness roughly in the same direction. In a case where the ground motion does not show a clear directional impulse, downfall directions are scattered and large changes occur in downfall directions due to small differences in the column slenderness, which supports the conclusions from Mouzakis et al. (2002). As larger horizontal strong ground motions are usually bound to the S phase, toppling directions tend to occur in these cases at angles roughly orthogonal to the back azimuth.

A variation of the frictional conditions with otherwise constant parameters shows that at least for more impulsive or clearly directional ground movements the friction has little influence on downfall directions. Directions vary more for the structured column than for the monolithic one. This makes sense, as the total number of degrees of freedom in case of the seven-drum column is larger. In the test case with clear pronounced ground-motion directions, the downfall directions for both column types show an angle of roughly 90° with respect to the back azimuth. Even for these cases, an estimate of the correct direction towards the earthquake source based only on one observation would not have been unequivocal. For more complex ground motions, lacking a clear directional pulse, small changes in the friction coefficient determine the downfall direction of the structured column. The downfall of the monolithic column is then spread over a larger angular range and even includes the correct back azimuth. Without knowledge of the nature of the causative ground motion, almost always the case in archaeoseismic case studies, there would be no way to determine whether the toppled column fell in the direction of the back azimuth or at an ±90° angle with respect to it. These observations are in agreement with results from earlier studies. Mouzakis et al. (2002) and Papantonopoulos et al. (2002) found in analog and numeric experiments with marble columns a large sensitivity of the response to small changes in the input motion parameters. Shortcomings of the two-column model used in this study such as simplification of the contact forces and neglecting elastic deformation influence the dynamic reaction. An approximate prediction of overturning behavior, however, is possible.

Korjenkov and Mazor (2003) correlate directional damage patterns to the source distance. They assume that directly above the source vertical movements dominate, resulting in severe damage patterns of random directions. In contrast, for sites that are at some distance from the epicenter, they assert that lateral movements become significant, producing tilting and collapse towards the epicenter. For the simple column model and synthetic ground motions from two earthquakes with a strike-slip and normal faulting mechanism, no clear distance dependent trend of the downfall directions of column drum displacements was found. For earthquakes strong enough to excite significant archaeo-damages, radiation and directivity effects are crucial for determining the character of site-specific ground motion and associated directions of damage patterns. Local subsurface conditions, although not specifically addressed in this study, have demonstrable influence on strong ground motions. For soft sediment upper layers, the soil-structure interaction becomes another crucial factor, complicating the damage process and potential deformations as well as throw directions.

The previously proposed measure of the predominant acceleration pulse duration in form of the PGV/PGA ratio in the study of precariously balanced rocks (Purvance et al., 2008) also works as an indicator of the overturning potential of simple columns where PGD should also be taken into account. This is a promising approach to determine site-specific ground-motion parameters from archaeo-damages. The Arias intensity can be used as an additional parameter quantifying the overturning potential.

The current study is a basic approach to systematic parameter studies. With the proposed techniques applied to actual field cases, structured and monolithic column differences must be addressed as part of the analysis of downfall position as shown for example by Psycharis (2007). A structured column toppled domino-style indicates the original impact locations of the drums. Model calculations have shown that drums can make significant postimpact movements on a stiff surface, frequently resulting in disintegration of the structure. Monolithic columns may move after impact, for example, bouncing and/or rolling, but this behavior is strongly dependent on the nature of the impact surface. If no clear impact traces are visible, the archaeologically documented position could be misleading as the column may have moved after impact (Mallet, 1862).

In the numerical approach of this study, we assumed the idealized situation of a flat column base resting on a flat subsurface without any clamping devices. Comparisons with measured movements of a rocking marble block showed that imperfection of the contact surface alter the results, at least for small motion amplitudes as also shown by Mouzakis et al. (2002). In actual field applications, the situation is usually more complex. Stiros (1996) presents schematic examples of different column settings and Sinopoli and Sepe (1993) examined the coupled motion of a three-block structure with the geometric features of the colonnade of the Selinute Temple in Sicily. For the presence of clamping forces at the column base, a cracking and shear failure of the column is more probable than if no clamping forces are present. In these cases, rigid block models might not be sufficient. Konstantinidis and Makris (2005) showed that wooden clamping poles have only a minor effect and that replacing them by stiff metallic shear links during retrofitting might even be counterproductive. Colonnades of a temple, a frequent structural element in Greek and Roman architecture, exhibit different reactions to motions parallel or oblique to the trend (Psycharis, 2007).

The ground motions in this study were intentionally limited to translational. The concomitance of rotational ground-motion components is a complicating factor and needs further research particularly with regard to initiation of structural damage and the displacement of blocks. The importance of such results extends beyond the interests of archaeoseismology. Widening the tests to incorporate realistic synthetic ground motions of extended sources might help to better constrain source parameters from archaeo-damage patterns.

In conclusion, calculated downfall directions of simply structured columns with clear boundary conditions show that deducing the direction toward an earthquake source from the positions of toppled columns is not straightforward. Ground-motion variability is the most problematic element. Only when a clear horizontal pulse of sufficient amplitude dominates the ground motion can coherent toppling directions be expected for columns of different geometric structure. Even in these cases, however, the relation between the throwing ground-motion direction, indicated by the downfall, and the back azimuth is not necessarily directly evident because fault plane orientation and structure, directivity, rupture velocity, as well as local site effects, all have their share in contributing to the ground-motion characteristics.

Data and Resources

Strong-motion seismograms used in this study were retrieved from the Web page of the Consortium of Organizations for Strong Motion Observation Systems, www.cosmos-eq.org (last accessed November 2007) and the European strong-motion database CD-ROM, European Council, Environment and Climate Research Program ENV4-CT97-0397, 2000.

Radiation Patterns and Directivity

Somerville et al. (1997)

Figures and Tables

Fig. 11

Empirical model of the duration residual, showing its dependence on the directivity function (Xcos θ for strike-slip; Ycos φ for dip-slip).

click on image to open in a new tab

Somerville et al. (1997)


Abstract

Rupture directivity effects cause spatial variations in ground motion amplitude and duration around faults and cause differences between the strike-normal and strike-parallel components of horizontal ground motion amplitudes, which also have spatial variation around the fault. These variations become significant at a period of 0.6 second and generally grow in size with increasing period. We have developed modifications to empirical strong ground motion attenuation relations to account for the effects of rupture directivity on strong motion amplitudes and durations. The modifications are based on an empirical analysis of near-fault data. The ground motion parameters that are modified include the average horizontal response spectral acceleration, the duration of the acceleration time history, and the ratio of strike-normal to strike-parallel spectral acceleration. The parameters upon which the adjustments to average horizontal amplitude and duration depend are the fraction of the fault rupture that occurs on the part of the fault that lies between the hypocenter and the site, and the angle between the fault plane and the path from the hypocenter to the site. Since both of these parameters can be derived from the hypocenter location and the fault geometry, the model of rupture directivity effects on ground motions that we have developed can be directly included in probabilistic seismic hazard calculations. The spectral acceleration is larger for periods longer than 0.6 second, and the duration is smaller, when rupture propagates toward a site. For sites located close to faults, the strike-normal spectral acceleration is larger than the strike-parallel spectral acceleration at periods longer than 0.6 second in a manner that depends on magnitude, distance, and angle. To facilitate the selection of time histories that represent near-fault ground motion conditions in an appropriate manner, we provide a list of near-fault records indicating the rupture directivity parameters that each contains.

Introduction

Fig. 1

Schematic diagram of rupture directivity effects for a vertical strike-slip fault. The rupture begins at the hypocenter and spreads circularly at a speed that is about 80% of the shear wave velocity. The figure shows a snapshot of the rupture front at a given instant. Resulting time histories close to and away from the hypocenter are represented by strike-normal velocity recordings of the 1993 Landers earthquake at Joshua Tree and Lucerne respectively, whose locations are shown in Figure 3.

click on image to open in a new tab

Somerville et al. (1997)


The propagation of rupture toward a site at a velocity that is almost as large as the shear wave velocity causes most of the seismic energy from the rupture to arrive in a single large pulse of motion, which occurs at the beginning of the record. This pulse of motion represents the cumulative effect of almost all of the seismic radiation from the fault, as illustrated in Figure 1. The radiation pattern of the shear dislocation on the fault causes this large pulse of motion to be oriented in the direction perpendicular to the fault, as illustrated schematically in Figure 2 for strike-slip faulting. The radiation pattern on the left is for tangential S waves (horizontally polarized or SH waves in our coordinate system), whose direction of motion is normal to the direction of seismic wave propagation. The radiation pattern on the right is for the horizontal component of radial waves (vertically polarized or SV waves in our coordinate system), whose direction of motion is in the direction of seismic wave propagation. On the left side, coincidence of the radiation pattern maximum for tangential motion and the rupture propagation direction toward the site produce a large displacement pulse normal to the fault strike. On the right side, the minimum in the radiation pattern for radial motion produces small dynamic displacements superimposed on a larger static displacement parallel to the fault.

Fig. 2

Schematic map view of the radiation pattern for a vertical strike-slip fault and its effect on near-fault ground displacements. Source: Somerville et al. (1995b).

click on image to open in a new tab

Somerville et al. (1997)


Forward rupture directivity effects occur when two conditions are met: the rupture front propagates toward the site, and the direction of slip on the fault is aligned with the site. The conditions for generating forward rupture directivity effects are readily met in strike-slip faulting, where the fault slip direction is oriented horizontally in the direction along the strike of the fault, and rupture propagates horizontally along strike either unilaterally or bilaterally. However, not all near-fault locations experience forward rupture directivity effects in a given event. Backward directivity effects, which occur when the rupture propagates away from the site, give rise to the opposite effect: long duration motions having low amplitudes at long periods, as shown in Figures 1 and 3. A qualitative description of these effects was presented by Archuleta and Hartzell (1981) using data from the 1979 Imperial Valley earthquake.

Fig. 3

Map of the Landers region showing the location of the rupture of the 1992 Landers earthquake (which occurred on three fault segments), the epicenter, and the recording stations at Lucerne and Joshua Tree. The strike normal velocity time histories at Lucerne and Joshua Tree exhibit forward and backward rupture directivity effects respectively.

click on image to open in a new tab

Somerville et al. (1997)


The conditions required for forward directivity are also met in dip-slip faulting, including both reverse and normal faults. The alignment of both the rupture direction and the slip direction up the fault plane produces rupture directivity effects at sites located around the surface exposure of the fault (or its updip projection if it does not break the surface). Consequently, it is generally the case that all sites located near the surface exposure of a dip-slip fault experience forward rupture directivity when an earthquake occurs on that fault. Unlike the case for strike-slip faulting, where we expect forward rupture directivity effects to be most concentrated away from the hypocenter, dip-slip faulting produces directivity effects on the ground surface that are most concentrated updip from the hypocenter. An early example of forward rupture directivity effects in reverse faulting is the Pacoima Dam recording of the M 6.5 1971 San Fernando earthquake (Heaton, 1982). The M 6.7 1994 Northridge earthquake produced a large number of additional recordings, located along the northern margin of the San Fernando Valley, which also contain strong forward rupture directivity effects from reverse faulting (Wald et al., 1996).

In Figure 3, we illustrate the directivity effect in strike-slip faulting using the strike-normal components of ground velocity from two near-fault recordings of the magnitude 7.3 Landers earthquake of 1992 (Wald and Heaton, 1994). The Lucerne record, which is located 1.1 km from the surface rupture and 45 km from the epicenter of the Landers earthquake, consists of a large, brief pulse of motion (due to forward directivity effects), while the Joshua Tree record, located near the epicenter, consists of a long duration, low amplitude record (due to backward directivity effects).

Fig. 4

Top: acceleration, velocity and displacement time histories of the strike-normal and strike-parallel components of horizontal motion recorded at Lucerne during the 1992 Landers earthquake. Bottom: strike-normal and strike-parallel displacement response spectra of the Lucerne record.

click on image to open in a new tab

Somerville et al. (1997)


In the top part of Figure 4, we show the acceleration, velocity, and displacement time histories recorded at Lucerne. There is a large difference between the strike-normal and strike-parallel motions at long periods (velocity and displacement), but this difference vanishes at short periods (acceleration). The displacement response spectrum of the strike-normal component greatly exceeds that of the strike-parallel component for periods longer than 1 second, as seen at the bottom of Figure 4.

In the following sections, we develop quantitative models of rupture directivity effects that are based on a set of fault parameters. These models can be used to modify existing attenuation relations to incorporate directivity effects in ground motions used for seismic design. These models augment earlier models developed by Somerville and Graves (1993), Somerville et al. (1995a), and Somerville and Graves (1996).

Parameterization Of The Directivity Model

Ground Motion Parameters

The ground motion parameters that are modified for directivity effects include the average horizontal response spectral acceleration; the average duration of the two horizontal acceleration time histories; and the ratio of strike-normal to strike-parallel spectral acceleration. Strike-normal refers to the horizontal component of motion normal to the strike of the fault. Strike-parallel refers to the horizontal component of motion parallel to the strike of the fault. Following the method of Husid (1969), duration is defined as the time between 5% and 75% of the cumulative squared acceleration, following the convention of Abrahamson and Silva (1997b). The three ground motion parameters that we analyze, and the model parameters that control them, are listed in Table 1.

Table 1

Ground Motion Parameters Estimated by Directivity Model.

click on image to open in a new tab

Somerville et al. (1997)


The modifications for duration and response spectral accelerations are made with respect to the empirical attenuation relations of Abrahamson and Silva (1997a,b). To account for these effects, ground motions are calculated by first using the Abrahamson and Silva (1997a,b) relations, or equivalent relations, and then applying the modification factors prescribed by the relations that we have developed. Although the models were developed based on the Abrahamson and Silva (1997a,b) models, the fact that we removed the bias between our data set and their models should make our modifications applicable to other attenuation relations. The modifications to account for the difference between strike-normal and strike-parallel response spectral acceleration are completely independent of any particular attenuation model and can be applied to the average horizontal response spectral acceleration calculated by any empirical model.

Directivity Model Parameters

Table 2

Parameters used in Directivity Model.

click on image to open in a new tab

Somerville et al. (1997)


All of the model parameters considered in the development of the directivity functions, and their ranges of applicability, are listed in Table 2, and the functional forms used to model the ground motion parameters are shown in Table 1. Based on the description of rupture directivity effects given above, we expect amplitude variations due to rupture directivity to depend on two geometrical parameters. First, the smaller the angle between the direction of rupture propagation and the direction of waves travelling from the fault to the site, the larger the amplitude. Second, the larger the fraction of the fault rupture surface that lies between the hypocenter and the site, the larger the amplitude. We expect the duration of strong motion to be controlled by the same two parameters, with an inverse relationship between duration and amplitude. The azimuth and zenith angles and length and width ratios are illustrated for strike-slip and dip-slip faulting in Figure 5.

Fig. 5

Definition of rupture directivity parameters θ and X for strike-slip faults, and φ and Y for dip-slip faults, and region off the end of dip-slip faults excluded from the model.

click on image to open in a new tab

Somerville et al. (1997)


For strike-slip faults, the angle θ and length ratio X are measured from the epicenter to the site in the horizontal plane. For dip-slip faults, the angle φ and width ratio Y are measured from the hypocenter to the site in the vertical plane oriented normal to the fault. For sites located between the ends of the fault, the angles θ and φ, the length and width ratios X and Y, and closest distance rrup are related as follows: rrup/X = tan θ; rrup/Y = tan φ.

Under far-field conditions, the quantification of the angles θ and φ is straightforward since they are assumed to be constant for all parts of the fault. However, in the near-fault environment, the fault dimensions are generally larger than the distance between the fault and the site. This causes the angle between the fault plane and the direction to the site, and consequently the radiation pattern amplitude, to continually change. We have used simple functional forms of the angles to represent the directivity effect and acknowledge the ambiguity in their relationship to ground motion parameters.

We chose to model the effects of rupture directivity on ground motion amplitudes and duration using the function X cos θ for strike-slip faults and Y cos φ for dip-slip faults. The cosine function was chosen to give the ground motion parameters a smooth decay with increasing angle. This functional form is compatible with the far-field approximation of rupture directivity effects (Aki and Richards, 1980). Preliminary analyses of the data showed that separate terms for the distance ratio and angle parameters were not required to adequately model the data.

Between the ends of a dip-slip fault, the variation of ground motion parameters with φ is indistinguishable from its variation with rupture distance rrup. In contrast, the variation of ground motion parameters with θ is independent of the rupture distance rrup. Since rupture distance is a primary ground motion parameter already included in attenuation relations, we expect to find more spatial variability of strike-slip motions with cos θ than of dip-slip motions with cos φ.

In a strike-slip earthquake, there are strong directivity effects off the ends of the fault. However, directivity effects are not important off the ends of a dip-slip fault because the directivity effect in this case is operating updip, not along strike. An additional parameter would be needed to describe the position of the site along strike, in order to modulate the strong directivity effect that would be predicted by the small value of the angle φ associated with stations off the end of a dip-slip fault. We have chosen not to incorporate this additional parameter, and so our model for the absolute amplitude and duration effects of rupture directivity is confined to the region between the ends of the fault. This region, which is shown in Figure 5, is the same as that used by Abrahamson and Somerville (1996) in their analysis of footwall and hanging-wall effects in dip-slip faulting.

As illustrated in Figure 2, the ratio of strike-normal to strike-parallel motions is primarily a function of the radiation pattern of the earthquake. For example, we expect (and observe) large ratios of strike-normal to strike-parallel motions in both the forward directivity direction, where amplitudes are large, and in the backward directivity direction, where amplitudes are small. We therefore expect the strike-normal to strike-parallel ratio to be mainly controlled by the angles, and less controlled by the length and width ratios.

Fig. 2

Schematic map view of the radiation pattern for a vertical strike-slip fault and its effect on near-fault ground displacements. Source: Somerville et al. (1995b).

click on image to open in a new tab

Somerville et al. (1997)


To model the strike-normal to strike-parallel ratio, we chose to use a cos2 ξ dependence of the strike-normal to strike-parallel ratio, where ξ is θ for strike-slip and φ for dip-slip faulting in the range of 0° to 45°. This form is consistent with the far-field radiation pattern for strike-normal and strike-parallel motions. In the near-fault environment, the rapid variation of angle with location on the fault can produce modulation of the strike-normal to strike-parallel ratio that is more complex than cos2 ξ. Although this more rapid variation was observed in the data, we chose not to model its more complex form. We also fixed the ratio at unity for angles ξ larger than 45° in light of this complexity.

Data

Our quantification of rupture directivity effects is based on regression analysis of a data set of strong motion records. The earthquakes selected for this study include all California crustal earthquakes with magnitudes of 6 or larger for which digital strong motion data and faulting mechanism are available (including the 1994 Northridge earthquake), together with selected crustal earthquakes from other regions (including the 1995 Kobe earthquake) to augment the data set for larger magnitudes. In order to include the strongest available recordings of crustal earthquakes, we have used some recordings from unconventional instruments (Iwan and Chen, 1994) and from earthquakes in Asia Minor. The 1992 Cape Mendocino earthquake was assumed to be a subduction earthquake and was not included in this study. The data set provides a fairly uniform sampling of the magnitude range of 6.0 to 7.5 and the distance range of 0 to 50 km, as shown in Figure 6. A list of the earthquakes selected for the study is given in Table 3. This table describes the mechanism of the earthquake (strike-slip, oblique, reverse or thrust) and the strike and dip angles used for measuring the azimuth angle θ and the zenith angle φ. The strike of the fault was also used in rotating the horizontal motions into strike-normal and strike-parallel components.

Fig. 6

Magnitude and distance distribution of earthquakes used in analysis of strike-normal and strike-parallel ratio. Above: separation by site category. Below: Separation by fault mechanism.

click on image to open in a new tab

Somerville et al. (1997)


As the study proceeded, we found it necessary in some instances to select subsets of this data set in the development of our model. The low-cut filters applied to recordings of earthquakes of magnitude less than 6.5 made their response spectra generally unreliable at the longer periods. For this reason, we limited our study of the absolute amplitude and duration effects of rupture directivity to magnitudes of 6.5 and larger. This limitation does not apply to the fault-normal to average response spectral ratio, because the effects of the filter are cancelled when the ratio is taken, and so the model for the ratio applies to magnitudes of 6 and larger. Also, we restricted our model for the effects of directivity on duration to the distance range of 0–20 km, because the durations at larger distances appear to be dominated by path effects, especially for strike-slip faulting. Restrictions were also applied to the domains around dip-slip faults that were used in modeling the spatial variations of absolute amplitude and duration effects, as described above.

Analysis Method

The directivity model was developed by measuring differences between pairs of parameter values and by using a regression analysis to quantify the dependence of these differences on the fault parameters. The regression analysis used the random effects method (Abrahamson and Youngs, 1992). This method provides a means of partitioning random variability in ground motion amplitudes into inter-event and intra-event terms, and ensures that the results of the regression are not unduly influenced by events having large numbers of recordings. The form of the period dependence of variations in ground motion amplitudes was established by preliminary analyses of each coefficient in turn, and then fixing them in the final regressions after the application of smoothing. This was done starting with the most sensitive coefficient and progressing through to the least sensitive coefficient and finally to the constant term.

The uncertainty in the ground motion parameters consists of two terms: one due to variability from one earthquake event to another (the inter-event variability, τ) and another due to variability from one recording of an earthquake to another (the intra-event variability, σ). The overall variability is the combination of these two components. These two uncertainties and their combined value are given in Tables 4, 5, 6, and 7 together with a smoothed estimate of the total variability. The intra-event variability is much larger than the inter-event variability and dominates the total variability.

Spatial Variation In Average Horizontal Response Spectra

Directivity depends on two geometrical parameters: the angle between the direction of rupture propagation and the direction of waves travelling from the fault to the site, and the fraction of the fault rupture surface that lies between the hypocenter and the site. Residuals between the recorded average horizontal spectral acceleration and that calculated by the empirical model of Abrahamson and Silva (1997a), shown in Figure 7, were used as inputs into a regression analysis. For the directivity function, these residuals have a larger trend for strike-slip than for dip-slip earthquakes. The effects of differences between rock and soil sites were taken into account by classifying the recorded data into rock and soil categories and by using the corresponding site category in the Abrahamson and Silva (1997a) model.

Fig. 7

Residuals between recorded average horizontal response spectral acceleration at 3 seconds period and that calculated from the model of Abrahamson and Silva (1997a) as a function of distance and the directivity function (Xcos θ for strike-slip; Ycos φ for dip-slip).

click on image to open in a new tab

Somerville et al. (1997)


The dependence of the residual between recorded and model spectral acceleration on the angles and distance ratios was examined by means of a regression analysis of the data. We chose to retain the magnitude and distance dependence of the Abrahamson and Silva (1997a) attenuation relation, and so our functional form for the residual had no magnitude or distance dependence. The residuals were fit using equations of the form:

y = C1 + C2X cos θ for strike-slip; M > 6.5

y = C1 + C2Y cos φ for dip-slip; M > 6.5

where y is the residual of the natural logarithm of the spectral acceleration at a given period, X and Y are along-strike and updip distance ratios, θ and φ are azimuth and zenith angles, and C1 and C2 are period-dependent coefficients. The term C1 was reduced by the value of the constant term that was obtained by setting C2 to zero in order to remove bias between our data set and that used by Abrahamson and Silva (1997a), thereby enhancing the applicability of the model to other attenuation relations. The coefficients obtained for strike-slip and dip-slip faulting are listed in Table 4, and shown as a function of period in Figure 8.

Fig. 8

Coefficients of the empirical model of the response spectral amplitude residual.

click on image to open in a new tab

Somerville et al. (1997)


The constant term has an inverse dependence on the amplitude residual, indicating a reduction in the base ground motion level upon which increments are added at sites having forward directivity. The dependence of the spectral amplification factor on X cos θ for strike-slip faulting and Y cos φ for dip-slip faulting is shown in Figure 9. These effects begin at 0.6 second period and increase with period. For strike-slip faulting, maximum directivity conditions (X cos θ = 1) cause an amplitude about 1.8 times larger than average at 2 seconds period, while minimum directivity effects cause an amplitude about 0.6 times average. In the model for dip-slip faulting, which excludes sites off the ends of the fault as shown in Figure 5, the effects lie in the range of about 1.2 to 0.8.

Between the ends of a dip-slip fault, the variation of ground motion amplitude with φ is indistinguishable from its variation with rupture distance rrup. This is presumably an important cause of the much lower spatial variation of ground motions around dip-slip faults than for strike-slip faults. Another cause is related to the difference in rupture mode required to produce rupture directivity effects, which is updip for dip-slip faults but along strike for strike-slip faults, as illustrated in Figure 5. Strike-slip faults have regions of low directivity effects near the epicenter; in effect the epicentral area is "nodal" for rupture directivity. In contrast, the predominantly updip rupture of dip-slip faults produces rupture directivity effects at all sites located around the surface exposure of the fault, particularly in the region directly updip from the hypocenter which is a "lobe" rather than a "node" for directivity effects. The uniformly large ground-motion amplitudes produced near dip-slip faults by rupture directivity are presumably already incorporated in the attenuation relations via the distance dependence (which may consequently be different from that for strike-slip), leaving relatively little spatial variability.

The period dependence of amplitude variations caused by rupture directivity effects shown in Figure 9 presumably indicates a transition from coherent source radiation and wave propagation conditions at long periods to incoherent source radiation and wave propagation conditions at short periods. This transition occurs at a period of about 0.6 second.

Fig. 9

Empirical model of the response spectral amplitude ratio, showing its dependence on period and on the directivity function (Xcos θ for strike-slip; Ycos φ for dip-slip).

click on image to open in a new tab

Somerville et al. (1997)


Spatial Variation In Strong Motion Duration

The same directivity conditions that give rise to the systematic variations in strong-motion amplitudes that have just been described also give rise to systematic variations in strong-motion duration. Our model assumes that duration variations due to rupture directivity depend on two geometrical parameters: the angle between the direction of rupture propagation and the direction of waves travelling from the fault to the site, and the fraction of the fault rupture surface that lies between the hypocenter and the site. Residuals between the recorded duration and that calculated by the empirical model of Abrahamson and Silva (1997b), shown in Figure 10, were used as inputs into a regression analysis. For the directivity function, these residuals have similar trends for strike-slip and dip-slip earthquakes. The effects of differences between rock and soil sites were taken into account by classifying the recorded data into rock and soil categories and by using the corresponding site category in the Abrahamson and Silva (1997b) model. The Abrahamson and Silva (1997b) model does not distinguish between strike-slip and dip-slip faulting. The results of our analysis indicate that there may be differences in duration between them, with dip-slip having longer duration under neutral or backward directivity conditions, but these results are constrained by few dip-slip data for backward directivity conditions.

Fig. 10

Residuals between recorded average horizontal duration and that calculated from the model of Abrahamson and Silva (1997b) as a function of distance and the directivity function (Xcos θ for strike-slip; Ycos φ for dip-slip).

click on image to open in a new tab

Somerville et al. (1997)


The dependence of the residual between recorded and model duration on the angles and length ratios was examined by means of separate regression analyses of the strike-slip and dip-slip data. We chose to retain the magnitude and distance dependence of the Abrahamson and Silva (1997b) attenuation relation, and so our functional form for the residual had no magnitude or distance dependence. The residuals were fit using equations of the form:

y = C1 + C2X cos θ for strike-slip, M > 6.5

y = C1 + C2Y cos φ for dip-slip, M > 6.5

where y is the residual of the natural logarithm of the duration at a given period, X and Y are along-strike and updip distance ratios, θ and φ are azimuth and zenith angles, and C1 and C2 are period-dependent coefficients.

When all of the data for all distances are used, we obtain a significant directivity effect for dip-slip faulting but not for strike-slip faulting. However, as increasingly short distance cutoffs are applied to the data, a significant directivity effect appears for strike-slip as well as dip-slip faulting. This behavior appears to be due to long wavetrains caused by the trapping of SH motion in thick sedimentary layers in strike-slip environments, such as the Imperial Valley. Since we consider this effect to be a path effect rather than a source effect, and our main focus is on the prediction of near-fault ground motions, we chose to use a distance cutoff of 20 km in the development of our directivity function for duration.

The constant term C1 in the above equations was reduced by the value of the constant term that was obtained by setting C2 to zero in order to remove the bias between our data set and that used by Abrahamson and Silva (1997b), thereby enhancing the applicability of the model to other attenuation relations. For strike-slip faults, this bias was negligible, but for dip-slip faults, the data within 20 km on average had durations that were about 25% less than predicted by the model. The coefficients obtained for strike-slip and dip-slip faulting by fitting data for distances less than 20 km are listed in Table 5.

The dependence of the duration factor (ey) on X cos θ for strike-slip faulting and on Y cos φ for dip-slip faulting is shown in Figure 11. As expected, there is an inverse correlation between duration residuals and amplitude residuals. For maximum directivity conditions (X cos θ = 1 or Y cos φ = 1), the duration is about 0.55 times the average duration for both strike-slip and dip-slip faulting. For minimum directivity conditions, the ground motion durations are 2.1 and 1.6 times longer than average for dip-slip and strike-slip faulting, respectively. The model for dip-slip faulting excludes sites off the ends of the fault, as shown in Figure 5, and is constrained by very few data with low values of Y cos φ.

Ratio Of Strike Normal To Average Horizontal Motions

In an earlier study (Somerville et al., 1995a) we examined the dependence of the strike-normal to strike-parallel ratio on magnitude, fault distance, style of faulting, and site category by means of a regression analysis of the data. The dependence of the ratio on faulting mechanism was found to be marginally significant and was not very large in practical terms, and so was dropped from the engineering model. The dependence of the ratio on site category was found to be not significant and was set to zero.

The strike-normal to strike-parallel ratio data were fit using an equation of the form:

y = C1 + C2 ln(rrup + 1) + C3(M − 6) for M > 6

where y is the natural logarithm of the strike-normal to fault-parallel ratio at a given period, rrup is rupture distance in km, M is moment magnitude, and C1 through C3 are period-dependent coefficients.

Fig. 12

Coefficients of the empirical model of strike-normal to average horizontal response spectral ratio excluding dependence on the angles θ or φ.

click on image to open in a new tab

Somerville et al. (1997)


The values of the coefficients of the resulting model of the strike-normal to average horizontal ratio (which is the square root of the strike-normal to strike-parallel ratio) are listed as a function of period in Table 6 and shown in Figure 12. The model of the strike-normal to average horizontal ratio is displayed in Figure 13. The top part of the figure shows the period dependence of the ratio for various magnitudes and distances. The bottom part of the figure shows the distance dependence of the ratio for various magnitudes and periods. The strike-normal motion is obtained by multiplying the attenuation relation value by the strike-normal to average horizontal ratio, and the strike-parallel motion is obtained by dividing the attenuation relation value by this ratio.

Fig. 13

Empirical model of the strike-normal to average horizontal response spectral ratio excluding dependence on the angles θ or φ, shown as a function of period for various magnitudes and distances (top), and as function of distance for various magnitudes and periods (bottom).

click on image to open in a new tab

Somerville et al. (1997)


In the present study, we also considered the effect of the angle θ and the length ratio X for strike-slip faults, and the angle φ and the width ratio Y for dip-slip faults. The effects of X and Y were found not to be significant. This indicates that the strike-normal to strike-parallel ratio is mainly influenced by radiation pattern effects and is not sensitive to the length and width ratio parameters X and Y that are important for the amplitude variations due to rupture directivity. We found that there was no significant difference in the ratio for strike-slip and dip-slip faults, which also indicates that radiation pattern effects dominate the ratio.

The strike-normal to strike-parallel ratio data were fit using an equation of the form:

y = cos2 ξ [C1 + C2 ln(rrup + 1) + C3(M − 6)]

for M > 6 and ξ < 45°; otherwise y = 0

where ξ is θ for strike-slip and φ for dip-slip, y is the natural logarithm of the strike-normal to strike-parallel ratio at a given period, rrup is rupture distance in km, M is moment magnitude, and C1 through C3 are period-dependent coefficients. We chose to modulate all of the terms in this function with cos2 ξ to make them all go to zero when ξ reaches 45°, providing a smooth transition to the region of no modeled effects beyond 45°.

The values of the coefficients of the angle-dependent model of the strike-normal to average horizontal ratio (which is the square root of the strike-normal to strike-parallel ratio) are listed as a function of period in Table 7 and shown in Figure 14. The period dependence of the ratio on θ or φ for M = 7 and rrup = 5 km is shown in Figure 15. The ratio also depends on the magnitude and distance, as illustrated in Figure 13 for the case where variation with ξ is not considered.

Fig. 14

Coefficients of the empirical model of strike-normal to average horizontal response spectral ratio including dependence on the angles θ or φ.

click on image to open in a new tab

Somerville et al. (1997)


The period dependence of the strike-normal to average horizontal spectral acceleration caused by rupture directivity effects shown in Figures 13 and 15, which resembles that for variations in the average horizontal motion amplitudes shown in Figure 9, presumably indicates a transition from coherent source radiation and wave propagation conditions at long periods to incoherent source radiation and wave propagation conditions at short periods. This transition occurs at a period of about 0.6 second. We have found a similar transition in broadband simulations of near-fault strong ground motions, an example of which is shown in Figure 16. The broadband simulation procedure is described by Somerville et al. (1995b). In the short-period part of the simulation procedure (periods shorter than 1 second), as described in more detail by Wald et al. (1988) and Somerville et al. (1991), the radiation pattern is treated empirically by using a suite of recordings that span the focal sphere of a small earthquake as empirical source functions. This produces the divergence between strike-normal and strike-parallel components at a period of about 0.4 second shown in Figure 16, which is very similar to the behavior of our empirical model. In future work, it is our intention to make use of the broadband simulation procedure to help delineate the characteristics of near-fault ground motions, especially for the large magnitudes and close distances that are often used as design criteria but for which the recorded strong motion data are sparse.

Fig. 15

Empirical model of the strike-normal to average horizontal response spectral ratio, showing its period dependence on angle θ or φ for M = 7 and rrup = 5 km.

click on image to open in a new tab

Somerville et al. (1997)


Fig. 16

Response spectra of broadband simulations of strike-normal and strike-parallel motions directly above a magnitude 7.2 strike-slip earthquake, and comparison of their average horizontal motions with the empirical model of Abrahamson and Silva (1997a).

click on image to open in a new tab

Somerville et al. (1997)


Applicability Of The Models

The ranges of applicability of the models are summarized in Table 2. For magnitudes below which the models are defined (below 6.0 for strike-normal to average response spectrum; and below 6.5 for absolute amplitudes and durations), we suggest that no modification be made for rupture directivity effects. Although the largest earthquakes on which the models are based have magnitudes of 7.4, we suggest that the models be extrapolated to larger magnitudes if required for a seismic hazard analysis. For distances larger than those for which the models were developed (50 km for amplitudes and 20 km for duration), we suggest that no modification be made for rupture directivity effects.

Similarly, off the ends of dip-slip faults (see Figure 5), we suggest that no modifications to absolute amplitudes and durations be made for rupture directivity effects. The dependence of fault-normal to average response spectra on angle is modeled only for angles θ or φ up to 45°, and the ratio should be set to unity for angles larger than 45°. We have not attempted to smooth our models so as to have no effect in these various domains that are excluded from the model.

Comparison With Other Models

To date, rupture directivity effects have rarely been incorporated in ground motion attenuation relations. Campbell (1987) incorporated the amplitude effects of rupture directivity into attenuation relations for peak acceleration and peak velocity. His amplification factors for rupture directivity toward the site are about 1.7 and 2.6 for peak acceleration and peak velocity respectively. Our study does not indicate any amplitude effects for peak acceleration. More recent attenuation relations for peak acceleration developed by Campbell (e.g., Campbell and Bozorgnia, 1994) do not contain rupture directivity effects. Our study indicates that the maximum amplitude effects at periods of a few seconds (corresponding roughly to peak velocity) are on the order of a factor of 1.5, considerably less than the effect on peak velocity found by Campbell (1987).

Sadigh et al. (1993), using a combination of empirical and numerical methods, concluded that the strike-normal motion is 1.2 times the average horizontal component in the period range of 2 to 5 seconds at distances less than 10 km. Our analysis, based on the formal regression analysis of a large data set, produces a model having both distance and magnitude dependence, with the ratio reaching values of 1.5 close to large earthquakes at long periods. We found the ratio to have a strong dependence on magnitude, distance, and period, but Sadigh et al. (1993) did not explicitly consider its magnitude and distance dependence.

Representation Of Near-Fault Ground Motions For Design

The model that we have developed for the effects of rupture directivity on the amplitudes and durations of ground motions near faults can be readily applied to estimate ground motion levels and durations. The modifications for duration and response spectral accelerations are made with respect to the empirical attenuation relations of Abrahamson and Silva (1997a,b). To account for these effects, ground motions are calculated by first using the Abrahamson and Silva (1997a,b) models and then applying the modification factors prescribed by the relations that we have developed. While these modifications are specific to the Abrahamson and Silva (1997a,b) relations, they may provide approximate adjustment factors for other attenuation relations that use similar definitions of parameters such as rupture distance and that have similar functional forms. The modifications to account for the difference between strike-normal and strike-parallel response spectral acceleration are independent of any particular attenuation model and can be applied to the average horizontal response spectral acceleration calculated by any model.

The systematic variation in ground motion parameters due to rupture directivity effects that we have modeled should be accompanied by a decrease in the standard error of the median ground-motion parameter values that are estimated without considering the systematic effects caused by rupture directivity. These adjustments to the attenuation relations of Abrahamson and Silva (1997a,b) have not been made.

Attenuation relations modified to include directivity effects can be used directly in probabilistic seismic hazard analysis (PSHA). The parameters that control rupture directivity effects are the location and orientation of the fault rupture plane, and the location of the hypocenter on the rupture plane. In modern PSHA codes, all of these parameters are selected in the process of probabilistically characterizing earthquake occurrences on defined faults.

The strong motion data clearly indicate the presence of systematically larger ground motions in the strike-normal direction than in the strike-parallel direction close to faults. Further, recent destructive earthquakes have shown signs of damage occurring in preferred directions that correspond to strike-normal (north in the 1994 Northridge earthquake; northwest in the 1995 Kobe earthquake). Since the average strike of major faults is usually well defined, it is straightforward to take these differences into account in the evaluation of near-fault ground motions, especially for tall buildings, base-isolated buildings, bridges, dams, and other structures that are sensitive to long-period ground motions. Consideration of these differences may be especially important for the retrofit of existing structures near active faults (Salah-Mars et al., 1994). Even if the specific location and orientation of faults is not known, there may be a high enough level of certainty in the strike of faults in a region (for example, of blind thrust faults in the Los Angeles basin) to warrant consideration of larger strike-normal ground motions. The implications of the orientation of dams with respect to fault strike-controlled valleys and range fronts for the specification of design ground motions have been described by Somerville and Graves (1996).

Analysis of large structures such as bridges is often done using time histories rather than response spectra. The time histories, which may be from recorded earthquakes or from strong-motion simulations of the kind described above, are usually spectrally matched to a design response spectrum. The modifications that we have developed to incorporate rupture directivity effects in the response spectrum are not sufficient to ensure the appropriate incorporation of rupture directivity effects in time histories that are matched to these spectra. This is because the rupture directivity effect is manifested in the time domain by a large pulse of long-period ground motion, and the spectral matching process cannot build a rupture directivity pulse into a record where none is present to begin with. Since the response spectrum developed for design or evaluation of a near-fault structure will be influenced by forward rupture directivity effects at most sites, especially if the adjustments described above are implemented, it is important to select an appropriate proportion of time histories that include forward rupture directivity effects if time histories are being used in conjunction with the response spectrum.

Specifying time histories for use in structural analyses also requires consideration of the correct orientation of the static and dynamic ground displacements. In Figure 17, we show the sense of motion of the permanent ground displacement near left-lateral and right-lateral unilateral strike-slip faults for rupture propagation in either direction (that is, for epicenters at either end of the fault). The sense of strike-normal displacement is continuous across the fault, whereas the sense of strike-parallel displacement is discontinuous across the fault (reflecting the displacement on the fault). For a given sense of slip (e.g., strike-slip), the polarity of the strike-parallel displacement is the same for rupture in either direction, but the polarity of the strike-normal displacement is opposite for rupture in opposite directions.

Fig. 17

Schematic diagram of the polarity of permanent ground displacement for strike-slip earthquakes. The motions are shown for both left-lateral and right-lateral unilateral faults, and for both northerly and southerly rupture propagation on north-striking faults.

click on image to open in a new tab

Somerville et al. (1997)


As a guide to the selection of time histories for use in design and evaluation of structures that are sensitive to long-period ground motions, we have listed in Table 8 a set of near-fault strong-motion recordings of crustal earthquakes and indicated the rupture directivity parameters that each contains. The earthquakes can be identified by earthquake date in Table 3, which also gives their mechanisms (for selecting either X and θ or Y and φ for describing the directivity function) and strike directions (for describing strike-normal and strike-parallel directions). For strike-slip earthquakes (SS), the directivity parameters used in our model are X and θ, while for other mechanisms (OB, RV, TH), which we group together as dip-slip, the directivity parameters used in our model are Y and φ. The table also lists the peak horizontal accelerations and velocities of the records in the strike-normal and strike-parallel directions. The catalog of records given in Table 8 includes those whose rupture distance is 10 km or less in the data set used in our analyses. This table can complement the extensive classification and evaluation of earthquake records using a range of ground-motion parameters provided by Naeim and Anderson (1993, 1996).

It is a common fallacy to assume that recordings close to the epicenters of strike-slip and oblique-slip earthquakes (such as Bond's Corner, 1971 Imperial Valley; Corralitos, 1987 Loma Prieta; and Joshua Tree, 1992 Landers) contain forward rupture directivity effects. On the contrary, these records contain neutral or backward directivity effects, produced when the rupture propagates away from the site, as illustrated in Figures 1 and 3, and are characterized by relatively low amplitudes of long-period ground motions.

Conclusion

Rupture directivity causes spatial variations in the amplitude and duration of ground motions around faults. The propagation of rupture toward a site causes larger ground-motion amplitudes at periods longer than 0.6 second and shorter strong motion durations than for average directivity conditions. The variations in amplitude and duration depend on the product of the length or width ratio X or Y and the cosine of the angle θ or φ between the fault plane and the path to the site. We have developed modifications to the empirical attenuation relations of Abrahamson and Silva (1997a, b) to account for these spatial variations in ground-motion amplitudes and durations around faults. These modifications should also be applicable to other attenuation relations.

For strike-slip faulting, the directivity effect on amplitudes is weak at sites close to the epicenter, but grows large at sites located near the fault rupture zone but away from the epicenter. In contrast, rupture directivity effects are uniformly large in the region located around the surface exposure of dip-slip faults, particularly the region directly updip from the hypocenter. Moreover, between the ends of a dip-slip fault, the variation of ground motion amplitude with the angle φ is indistinguishable from its variation with rupture distance rrup. This causes strike-slip faults to have more spatial variation of amplitude due to rupture directivity effects than dip-slip faults.

The strong motion data clearly indicate the presence of systematically larger ground motions in the strike-normal direction than in the strike-parallel direction close to faults at periods longer than 0.6 second. The ratio of strike-normal to strike-parallel motions increases with increasing magnitude and period and with decreasing rupture distance rrup and angles θ and φ for strike-slip and dip-slip faults. Since the strike of major faults is usually well defined, it is straightforward to take these differences into account in the evaluation of near-fault ground motions for tall buildings, base-isolated buildings, bridges, dams, and other structures that are sensitive to long-period ground motions. We have developed modifications that can be applied to any empirical attenuation relation to estimate the strike-normal and strike-parallel motions from the average horizontal motions
.

It is important to select an appropriate proportion of time histories which include forward rupture directivity effects if time histories are being used in conjunction with the response spectrum in the design or analysis of a structure located near an active fault. As a guide to the selection of time histories for use in the design and evaluation of structures that are sensitive to long-period ground motions, we have listed in Table 8 a set of near-fault strong-motion recordings and indicated the directivity parameters that each contains. Specifying time histories for use in structural analyses also requires consideration of the correct orientation of the static and dynamic ground displacements.

Notes and Further Reading