simpeg.electromagnetics.static.utils.geometric_factor#
- simpeg.electromagnetics.static.utils.geometric_factor(survey_object, space_type='half space', **kwargs)[source]#
Calculate geometric factor for every datum.
Consider you have current electrodes A and B, and potential electrodes M and N. Let \(R_{AM}\) represents the scalar horizontal distance between electrodes A and M; likewise for \(R_{BM}\), \(R_{AN}\) and \(R_{BN}\). The geometric factor is given by:
\[G = \frac{1}{C} \bigg [ \frac{1}{R_{AM}} - \frac{1}{R_{BM}} - \frac{1}{R_{AN}} + \frac{1}{R_{BN}} \bigg ]\]where \(C=2\pi\) for a halfspace and \(C=4\pi\) for a wholespace.
- Parameters:
- survey_object
simpeg.electromagnetics.static.resistivity.Survey
A DC (or IP) survey object
- space_type{‘half space’, ‘whole space’}
Compute geometric factor for a halfspace or wholespace.
- survey_object
- Returns:
- (
nD
)numpy.ndarray
Geometric factor for each datum
- (