agd.Metrics.Seismic

The seismic package defines norms/metrics that characterize the first arrival time of elastic waves in anisotropic materials. It also provides helper functions for solving the elastic wave equation itself.

Main metric/norm classes:

  • Hooke : norm defined by a Hooke tensor, corresponding to the fastest velocity.
  • TTI : tilted transversally isotropic norm.
 1# Copyright 2020 Jean-Marie Mirebeau, University Paris-Sud, CNRS, University Paris-Saclay
 2# Distributed WITHOUT ANY WARRANTY. Licensed under the Apache License, Version 2.0, see http://www.apache.org/licenses/LICENSE-2.0
 3
 4"""
 5The seismic package defines norms/metrics that characterize the first arrival time of
 6elastic waves in anisotropic materials. It also provides helper functions for solving 
 7the elastic wave equation itself.
 8
 9Main metric/norm classes:
10- Hooke : norm defined by a Hooke tensor, corresponding to the fastest velocity.
11- TTI : tilted transversally isotropic norm.
12"""
13
14#from .implicit_base import ImplicitBase
15from .hooke   import Hooke
16from .tti import TTI
17from . import thomsen_data as Thomsen