- rx.projectFields --> rx.eval

- rx.projectFieldsDeriv --> rx.evalDeriv
This commit is contained in:
Lindsey Heagy
2016-02-21 15:31:02 -08:00
parent 922bdf93e1
commit bcda60815e
14 changed files with 52 additions and 52 deletions
+1 -1
View File
@@ -11,7 +11,7 @@ def run(N=100, plotIt=True):
"""
class LinearSurvey(Survey.BaseSurvey):
def projectFields(self, u):
def eval(self, u):
return u
class LinearProblem(Problem.BaseProblem):
+1 -1
View File
@@ -52,7 +52,7 @@ def run(plotIt=True, nFreq=1):
# Calculate the data
fields = problem.fields(sig)
dataVec = survey.projectFields(fields)
dataVec = survey.eval(fields)
# Make the data
mtData = MT.Data(survey,dataVec)