choclo.prism.magnetic_field

Contents

choclo.prism.magnetic_field#

choclo.prism.magnetic_field(easting, northing, upward, prism_west, prism_east, prism_south, prism_north, prism_bottom, prism_top, magnetization_east, magnetization_north, magnetization_up)[source]#

Magnetic field due to a rectangular prism.

Returns the three components of the magnetic field due to a single rectangular prism on a single computation point.

Note

Use this function when all the three component of the magnetic fields are needed. Running this function is faster than computing each component separately. Use one of magnetic_e, magnetic_n, magnetic_u if you need only one of them.

Parameters:
easting, northing, upwardfloat

Easting, northing and upward coordinates of the observation point. Must be in meters.

prism_west, prism_east, prism_south, prism_north, prism_bottom, prism_topfloat

The boundaries of the prism. Must be in meters.

magnetization_eastfloat

The East component of the magnetization vector of the prism. Must be in Am1.

magnetization_northfloat

The North component of the magnetization vector of the prism. Must be in Am1.

magnetization_upfloat

The upward component of the magnetization vector of the prism. Must be in Am1.

Returns:
b_e, b_n, b_ufloat

Easting, northing and upward component of the magnetic field generated by the prism on the observation point in T. It will be numpy.nan if the observation point falls in a singular point: prism vertices, prism edges or interior points.

Notes

Consider an observation point p and a prism R with a magnetization vector M. The magnetic field B it generates on the observation point p is defined as:

B(p)=μ04πp[RMq(1pq)dv]

Since the magnetization vector is constant inside the boundaries of the prism, we can write the easting component of B as:

Bx(p)=μ04π[MxRxp[xq(1pq)]dv+MyRxp[yq(1pq)]dv+MzRxp[zq(1pq)]dv]

where Mx, My and Mz are the components of the magnetization vector. The other components can be expressed in an analogous way.

It can be proved that

xq(1pq)=xp(1pq)

and that it also holds for the two other directions. Therefore, we can rewrite Bx as:

Bx(p)=+μ04π[Mx2xp2R1pqdv+My2xpypR1pqdv+Mz2xpzpR1pqdv]

Solutions to each one of the integrals in the previous equation and their second derivatives are given by [Nagy2000].

Following [Oliveira2015] we can define a symmetrical 3x3 matrix U whose elements are the second derivatives of the previous integrals, such as:

uij=2ijR1pqdv

with i,j{x,y,z}.

We can then express the magnetic field B(p) generated by the prism in a compact form:

B(p)=μ04πUM

References