Organize data object by rx as well as tx

This commit is contained in:
rowanc1
2014-03-22 12:52:30 -07:00
parent aacbc03cf6
commit b7d47bcf38
3 changed files with 44 additions and 19 deletions
+2 -2
View File
@@ -21,8 +21,8 @@ class FDEM_analyticTests(unittest.TestCase):
x = np.linspace(-10,10,5)
XYZ = Utils.ndgrid(x,np.r_[0],np.r_[0])
rxList = EM.FDEM.RxListFDEM(XYZ, 'exi')
Tx0 = EM.FDEM.TxFDEM(np.r_[0.,0.,0.], 'VMD', 1e2, rxList)
rxList = EM.FDEM.RxFDEM(XYZ, 'exi')
Tx0 = EM.FDEM.TxFDEM(np.r_[0.,0.,0.], 'VMD', 1e2, [rxList])
survey = EM.FDEM.SurveyFDEM([Tx0])