remove SrcType, put rx list first in inputs for src

This commit is contained in:
Lindsey Heagy
2015-05-10 16:54:55 -07:00
parent 64574369c3
commit 3b427d8a85
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ def run(plotIt=False):
# ax.plot(xyz_rxN[:,0],xyz_rxN[:,1], 'r.', ms = 3)
rx = DC.DipoleRx(xyz_rxP, xyz_rxN)
src = DC.DipoleSrc([-200, 0, -12.5],[+200, 0, -12.5], [rx])
src = DC.DipoleSrc([rx], [-200, 0, -12.5],[+200, 0, -12.5])
survey = DC.SurveyDC([src])
problem = DC.ProblemDC(mesh)
problem.pair(survey)