From 9d92f62cfaf28fa4844517954606533f60a8f882 Mon Sep 17 00:00:00 2001 From: Lindsey Heagy Date: Fri, 13 Nov 2015 13:50:10 -0800 Subject: [PATCH] analytic test update --- tests/em/fdem/forward/test_FDEM_analytics.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/em/fdem/forward/test_FDEM_analytics.py b/tests/em/fdem/forward/test_FDEM_analytics.py index cb906262..0f9d64f8 100644 --- a/tests/em/fdem/forward/test_FDEM_analytics.py +++ b/tests/em/fdem/forward/test_FDEM_analytics.py @@ -29,7 +29,7 @@ class FDEM_analyticTests(unittest.TestCase): x = np.linspace(-10,10,5) XYZ = Utils.ndgrid(x,np.r_[0],np.r_[0]) rxList = EM.FDEM.RxFDEM(XYZ, 'exi') - Src0 = EM.FDEM.SrcFDEM_MagDipole([rxList],loc=np.r_[0.,0.,0.], freq=freq) + Src0 = EM.FDEM.Src.MagDipole([rxList],loc=np.r_[0.,0.,0.], freq=freq) survey = EM.FDEM.SurveyFDEM([Src0]) @@ -114,9 +114,9 @@ class FDEM_analyticTests(unittest.TestCase): de = np.zeros(mesh.nF,dtype=complex) de[s_ind] = 1./csz - de_p = [EM.FDEM.SrcFDEM_RawVec_e([],freq,de/mesh.area)] + de_p = [EM.FDEM.Src.RawVec_e([],freq,de/mesh.area)] - dm_p = [EM.FDEM.SrcFDEM_MagDipole([],freq,src_loc)] + dm_p = [EM.FDEM.Src.MagDipole([],freq,src_loc)] # Pair the problem and survey