SimPEG.maps.ParametricPolyMap#

class SimPEG.maps.ParametricPolyMap(mesh, order, logSigma=True, normal='X', actInd=None, slope=10000.0)[source]#

Bases: SimPEG.maps.IdentityMap

Mapping for 2 layer model whose interface is defined by a polynomial.

This mapping is used when the cells lying below the Earth’s surface can be parameterized by a 2 layer model whose interface is defined by a polynomial function. The model is defined by the physical property values for each unit (σ1 and σ2) and the coefficients for the polynomial function (c).

For a 2D mesh , the interface is defined by a polynomial function of the form:

p(x)=i=0Ncixi

where ci are the polynomial coefficients and N is the order of the polynomial. In this case, the model is defined as

m=[σ1,σ2,c0,,cN]

The mapping u(m) from the model to the mesh is given by:

u(m)=σ1+(σ2σ1)[12+π1arctan(a(p(xc)yc))]

where xc and yc are vectors containing the x and y cell center locations for all active cells in the mesh, and a is a parameter which defines the sharpness of the boundary between the two layers. p(xc) evaluates the polynomial function for every element in xc.

For a 3D mesh , the interface is defined by a 2D polynomial function of the form:

p(x,y)=j=0Nyi=0Nxcijxiyj

where cij are the polynomial coefficients. Nx and Ny define the order of the polynomial in x and y, respectively. In this case, the model is defined as:

m=[σ1,σ2,c0,0,c1,0,,cNx,Ny]

The mapping u(m) from the model to the mesh is given by:

u(m)=σ1+(σ2σ1)[12+π1arctan(a(p(xc,yc)zc))]

where xc,yc and yz are vectors containing the x, y and z cell center locations for all active cells in the mesh. p(xc,yc) evaluates the polynomial function for every corresponding pair of xc and yc elements.

Parameters
meshdiscretize.BaseMesh

A discretize mesh

orderint or list of int

Order of the polynomial. For a 2D mesh, this is an int. For a 3D mesh, the order for both variables is entered separately; i.e. [order1 , order2].

logSigmabool

If True, parameters σ1 and σ2 represent the natural log of a physical property.

normal{‘x’, ‘y’, ‘z’}
actIndnumpy.ndarray

Active cells array. Can be a boolean numpy.ndarray of length mesh.nC or a numpy.ndarray of int containing the indices of the active cells.

Examples

Attributes

actInd

Active indices of the mesh.

logSigma

Whether the input needs to be transformed by an exponential

nC

Number of active cells being mapped too.

nP

Number of parameters the mapping acts on.

normal

The projection axis.

shape

Dimensions of the mapping.

slope

Sharpness of the boundary.

Methods

deriv(m[, v])

Derivative of the mapping with respect to the model.