call for analytics now: EM.Analytics.FDEM (or TDEM)

This commit is contained in:
Lindsey Heagy
2014-10-08 14:10:27 -07:00
parent c229e26f74
commit 682a8e3877
3 changed files with 2 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
import numpy as np
from scipy.constants import mu_0, pi
from scipy.special import erf
def hzAnalyticDipoleT(r, t, sigma):
theta = np.sqrt((sigma*mu_0)/(4*t))
tr = theta*r
etr = erf(tr)
t1 = (9/(2*tr**2) - 1)*etr
t2 = (1/np.sqrt(pi))*(9/tr + 4*tr)*np.exp(-tr**2)
hz = (t1 - t2)/(4*pi*r**3)
return hz