mirror of
https://github.com/wassname/simpeg.git
synced 2026-09-12 12:51:28 +08:00
- rx.projectFields --> rx.eval
- rx.projectFieldsDeriv --> rx.evalDeriv
This commit is contained in:
@@ -70,7 +70,7 @@ def appRes_TotalFieldNorm(sigmaHalf):
|
||||
fields = problem.fields(sigma)
|
||||
|
||||
# Project the data
|
||||
data = survey.projectFields(fields)
|
||||
data = survey.eval(fields)
|
||||
|
||||
# Calculate the app res and phs
|
||||
app_r = np.array(getAppResPhs(data))[:,0]
|
||||
@@ -88,7 +88,7 @@ def appPhs_TotalFieldNorm(sigmaHalf):
|
||||
fields = problem.fields(sigma)
|
||||
|
||||
# Project the data
|
||||
data = survey.projectFields(fields)
|
||||
data = survey.eval(fields)
|
||||
|
||||
# Calculate the app phs
|
||||
app_p = np.array(getAppResPhs(data))[:,1]
|
||||
@@ -106,7 +106,7 @@ def appRes_psFieldNorm(sigmaHalf):
|
||||
fields = problem.fields(sigma)
|
||||
|
||||
# Project the data
|
||||
data = survey.projectFields(fields)
|
||||
data = survey.eval(fields)
|
||||
|
||||
# Calculate the app res and phs
|
||||
app_r = np.array(getAppResPhs(data))[:,0]
|
||||
@@ -124,7 +124,7 @@ def appPhs_psFieldNorm(sigmaHalf):
|
||||
fields = problem.fields(sigma)
|
||||
|
||||
# Project the data
|
||||
data = survey.projectFields(fields)
|
||||
data = survey.eval(fields)
|
||||
|
||||
# Calculate the app phs
|
||||
app_p = np.array(getAppResPhs(data))[:,1]
|
||||
|
||||
Reference in New Issue
Block a user