Mondaic
This API reference is not for the latest stable Salvus version.

salvus.mesh.layered_meshing.material.elastic.hexagonal

Hexagonal (VTI) anisotropic elastic materials.

Classes

TensorComponents

class TensorComponents(
    salvus.mesh.layered_meshing.material.elastic.hexagonal._Hexagonal,
    salvus.mesh.layered_meshing.material.elastic._TensorComponents,
):
    def __init__(
        self,
        RHO: Union[
            salvus.mesh.layered_meshing.material.parameter.ConstantParameter,
            ~F,
        ],
        C11: Union[
            salvus.mesh.layered_meshing.material.parameter.ConstantParameter,
            ~F,
        ],
        C12: Union[
            salvus.mesh.layered_meshing.material.parameter.ConstantParameter,
            ~F,
        ],
        C13: Union[
            salvus.mesh.layered_meshing.material.parameter.ConstantParameter,
            ~F,
        ],
        C33: Union[
            salvus.mesh.layered_meshing.material.parameter.ConstantParameter,
            ~F,
        ],
        C44: Union[
            salvus.mesh.layered_meshing.material.parameter.ConstantParameter,
            ~F,
        ],
    ) -> None:
        ...

Hexagonal anisotropic elastic material parametrized by elastic constants.

Parameters
  • RHO Union[salvus.mesh.layered_meshing.material.parameter.ConstantParameter, ~F] — The density in kg / m^3.
  • C11 Union[salvus.mesh.layered_meshing.material.parameter.ConstantParameter, ~F] — The c_11 component of the stiffness tensor in Pa.
  • C12 Union[salvus.mesh.layered_meshing.material.parameter.ConstantParameter, ~F] — The c_12 component of the stiffness tensor in Pa.
  • C13 Union[salvus.mesh.layered_meshing.material.parameter.ConstantParameter, ~F] — The c_13 component of the stiffness tensor in Pa.
  • C33 Union[salvus.mesh.layered_meshing.material.parameter.ConstantParameter, ~F] — The c_33 component of the stiffness tensor in Pa.
  • C44 Union[salvus.mesh.layered_meshing.material.parameter.ConstantParameter, ~F] — The c_44 component of the stiffness tensor in Pa.
Attributes
ds Mapping

Material’s xarray representation.

flatten Dict

Get all parameters as a dict.

halfC11minC12 salvus.mesh.layered_meshing.material.parameter.F

Material property that might be accessed in checking symmetry.

Used in from_canonical in the base class. Note that this approach does fully expand the fields in the returned property

viscosity Optional[salvus.mesh.layered_meshing.material._material.Material]

Get the optional attenuation.

Velocity

class Velocity(
    salvus.mesh.layered_meshing.material.elastic.hexagonal._Hexagonal
):
    def __init__(
        self,
        RHO: Union[
            salvus.mesh.layered_meshing.material.parameter.ConstantParameter,
            ~F,
        ],
        VPH: Union[
            salvus.mesh.layered_meshing.material.parameter.ConstantParameter,
            ~F,
        ],
        VPV: Union[
            salvus.mesh.layered_meshing.material.parameter.ConstantParameter,
            ~F,
        ],
        VSH: Union[
            salvus.mesh.layered_meshing.material.parameter.ConstantParameter,
            ~F,
        ],
        VSV: Union[
            salvus.mesh.layered_meshing.material.parameter.ConstantParameter,
            ~F,
        ],
        ETA: Union[
            salvus.mesh.layered_meshing.material.parameter.ConstantParameter,
            ~F,
        ],
    ) -> None:
        ...

Hexagonal anisotropic elastic material parametrized by velocities.

Parameters
  • RHO Union[salvus.mesh.layered_meshing.material.parameter.ConstantParameter, ~F] — Density in kg / m^3.
  • VPH Union[salvus.mesh.layered_meshing.material.parameter.ConstantParameter, ~F] — Horizontal P-wave velocity in m / s.
  • VPV Union[salvus.mesh.layered_meshing.material.parameter.ConstantParameter, ~F] — Vertical P-wave velocity in m / s.
  • VSH Union[salvus.mesh.layered_meshing.material.parameter.ConstantParameter, ~F] — Horizontal S-wave velocity in m / s.
  • VSV Union[salvus.mesh.layered_meshing.material.parameter.ConstantParameter, ~F] — Vertical S-wave velocity in m / s.
  • ETA Union[salvus.mesh.layered_meshing.material.parameter.ConstantParameter, ~F] — Eta.
Attributes
ds Mapping

Material’s xarray representation.

flatten Dict

Get all parameters as a dict.

viscosity Optional[salvus.mesh.layered_meshing.material._material.Material]

Get the optional attenuation.