5. Inversion#
5.1. Theory#
Inversion frameworks are generalized, abstract approaches to solve a specific inversion problem without specifying the appropriate geophysical methods. This can be a specific regularization strategy, an alternative formulation of the inverse problem or algorithms of routine inversion. It is initialized by specific forward operators or managers that provide them.
5.1.1. Gauss-Newton inversion#
The default inversion framework is based on the generalized Gauss-Newton method and is compatible with any given forward operator and thus applicable to various physical problems. We state the inversion problem as minimization of an objective function consisting of data misfit and model constraints:
Note that we do not include inequality constraints in the minimization but use transformations to restrict parameters to reasonable ranges []. \(\mathbf{W}_\text{d}\) is the data weighting matrix containing the inverse data errors, \(\mathbf{W}_\text{m}\) is the model constraint matrix (e.g., a first-order roughness operator), and \(\mathbf{m}_0\) is a reference model. The dimensionless factor \(\lambda\) scales the influence of the regularization term. There is a wide range of different regularization methods (different kinds of smoothness and damping, mixed operators, anisotropic smoothing) The existing ones can be used flexibly to constrain different model parameters or subsurface parts (regions), but also be extended by own functions. The application of the Gauss-Newton scheme on minimizing (1) yields the model update \(\Delta\mathbf{m}^k\) in the \(k^\text{th}\) iteration []:
which is solved using a conjugate-gradient least-squares solver []. The inversion process including the region-specific regularization is sketched in Fig.~\ref{fig:InversionBase}.
\begin{figure} \centering\includegraphics[width=1\columnwidth]{gimli-fig-2.pdf} \caption{Generalized inversion scheme. Already implemented (\autoref{tab:methods}) or custom forward operators can be used that provide the problem specific response function and its Jacobian. Various strategies are available to regularize the inverse problem. \label{fig:InversionBase}} \end{figure}
All matrices of the inversion formulation can be directly accessed from Python and thereby offer opportunities for uncertainty and resolution analysis as well as experimental design []. Beyond different inversion approaches there are so-called frameworks for typical inversion (mostly regularization) tasks. Examples that are already implemented in pyGIMLi are for example:
Marquardt scheme inversion of few independent parameters, e.g., fitting of spectra [Loewer et al., 2016]
Soil-physical model reduction incorporating soil-physical functions []
Classical joint inversion of two data sets for the same parameter like DC and EM [Günther, 2013]
Block joint inversion of several 1D data using common layers, e.g., MRS+VES []
Sequential (constrained) inversion successive independent inversion of data sets, e.g., classic time-lapse inversion []
Simultaneous constrained inversion of data sets of data neighbored in space LCI, e.g., [], time (full time-lapse) or frequency []
Structurally coupled cooperative inversion of disparate data based on structural similarity (e.g., []
Structure-based inversion using layered 2D models []
Gauss-Newton formulation as in the paper
lambda
chi^2
Terms should be explained in here