Rearrange the FDEM to be closer to the TDEM implementation.

This commit is contained in:
rowanc1
2014-03-19 14:14:25 -07:00
parent 4709545b0d
commit 0efdffa3d6
2 changed files with 50 additions and 42 deletions
+1 -1
View File
@@ -12,7 +12,7 @@ npad = 5
hx = Utils.meshTensors(((npad,cs), (ncx,cs), (npad,cs)))
hy = Utils.meshTensors(((npad,cs), (ncy,cs), (npad,cs)))
hz = Utils.meshTensors(((npad,cs), (ncz,cs), (npad,cs)))
mesh = Mesh.TensorMesh([hx,hy,hz], x0=[-hx.sum()/2.,-hy.sum()/2.,-hz.sum()/2.,])
mesh = Mesh.TensorMesh([hx,hy,hz], x0=[-hx.sum()/2.,-hy.sum()/2.,-hz.sum()/2.])
model = Model.LogModel(mesh)