Rename to Problem3D_Integral

This commit is contained in:
Rowan Cockett
2016-04-29 16:06:08 -07:00
parent 47cf1151e3
commit 8bbc70228d
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ midy = int(mesh.nCy/2)
PF.Magnetics.plot_obs_2D(rxLoc,d,'Observed Data')
#%% Run inversion
prob = PF.Magnetics.MagneticIntegral(mesh, mapping=idenMap, actInd=actv)
prob = PF.Magnetics.Problem3D_Integral(mesh, mapping=idenMap, actInd=actv)
prob.solverOpts['accuracyTol'] = 1e-4
survey.pair(prob)
#survey.makeSyntheticData(data, std=0.01)
+2 -2
View File
@@ -4,7 +4,7 @@ from scipy.constants import mu_0
from MagAnalytics import spheremodel, CongruousMagBC
import re
class MagneticIntegral(Problem.BaseProblem):
class Problem3D_Integral(Problem.BaseProblem):
#surveyPair = Survey.LinearSurvey
@@ -206,7 +206,7 @@ class MagneticIntegral(Problem.BaseProblem):
return G
class MagneticsDiffSecondary(Problem.BaseProblem):
class Problem3D_DiffSecondary(Problem.BaseProblem):
"""
Secondary field approach using differential equations!
"""