pylops.avo.prestack.PrestackInversionยถ
- pylops.avo.prestack.PrestackInversion(data, theta, wav, m0=None, linearization='akirich', explicit=False, simultaneous=False, epsI=None, epsR=None, dottest=False, returnres=False, epsRL1=None, kind='centered', vsvp=0.5, **kwargs_solver)[source]ยถ
Pre-stack linearized seismic inversion.
Invert pre-stack seismic operator to retrieve a set of elastic property profiles from band-limited seismic pre-stack data (i.e., angle gathers). Depending on the choice of input parameters, inversion can be trace-by-trace with explicit operator or global with either explicit or linear operator.
- Parameters:
- data
numpy.ndarray Band-limited seismic post-stack data of size \([(n_\text{lins} \times) \, n_{t_0} \times n_{\theta} \, (\times n_x \times n_y)]\)
- theta
numpy.ndarray Incident angles in degrees
- wav
numpy.ndarray Wavelet in time domain (must had odd number of elements and centered to zero)
- m0
numpy.ndarray, optional Background model of size \([n_{t_0} \times n_{m} \,(\times n_x \times n_y)]\)
- linearization{โakirichโ, โfattiโ, โPSโ} or
list, optional โakirichโ: Aki-Richards. See
pylops.avo.avo.akirichards.โfattiโ: Fatti. See
pylops.avo.avo.fatti.โPSโ: PS. See
pylops.avo.avo.ps.List which is a combination of previous options (required only when
m0 is None).
- explicit
bool, optional Create a chained linear operator (
False, preferred for large data) or aMatrixMultlinear operator with dense matrix (True, preferred for small data)- simultaneous
bool, optional Simultaneously invert entire data (
True) or invert trace-by-trace (False) when usingexplicitoperator (note that the entire data is always inverted when working with linear operator)- epsI
floatorlist, optional Damping factor(s) for Tikhonov regularization term. If a list of \(n_{m}\) elements is provided, the regularization term will have different strenght for each elastic property
- epsR
float, optional Damping factor for additional Laplacian regularization term
- dottest
bool, optional Apply dot-test
- returnres
bool, optional Return residuals
- epsRL1
float, optional Damping factor for additional blockiness regularization term
- kind
str, optional Derivative kind (
centeredorforward).- vsvp
floatornumpy.ndarray \(V_S/V_P\) ratio (constant or time/depth variant)
- **kwargs_solver
Arbitrary keyword arguments for
scipy.linalg.lstsqsolver (ifexplicit=TrueandepsR=None) orscipy.sparse.linalg.lsqrsolver (ifexplicit=Falseand/orepsRis notNone))
- data
- Returns:
- minv
numpy.ndarray Inverted model of size \([n_{t_0} \times n_{m} \,(\times n_x \times n_y)]\)
- datar
numpy.ndarray Residual data (i.e., data - background data) of size \([n_{t_0} \times n_{\theta} \,(\times n_x \times n_y)]\)
- minv
Notes
The different choices of cost functions and solvers used in the seismic pre-stack inversion module follow the same convention of the seismic post-stack inversion module.
Refer to
pylops.avo.poststack.PoststackInversionfor more details.