From 030e3bc521bdd983158d249145fa2cc193fc47ae Mon Sep 17 00:00:00 2001 From: Dave Marchant Date: Tue, 15 Apr 2014 21:30:30 -0700 Subject: [PATCH] Fix to TDEM_bTests --- simpegEM/Tests/test_forward_EMproblem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simpegEM/Tests/test_forward_EMproblem.py b/simpegEM/Tests/test_forward_EMproblem.py index fa1aecf4..8e231cc6 100644 --- a/simpegEM/Tests/test_forward_EMproblem.py +++ b/simpegEM/Tests/test_forward_EMproblem.py @@ -26,7 +26,7 @@ class TDEM_bTests(unittest.TestCase): mesh = Mesh.TensorMesh([hx,hy,hz], [-hx.sum()/2.,-hy.sum()/2.,-hz.sum()/2.]) active = mesh.vectorCCz<0. - actMap = Maps.ActiveCells(mesh, active, -8, nC=mesh.nCz) + actMap = Maps.ActiveCells(mesh, active, np.log(1e-8), nC=mesh.nCz) mapping = Maps.ComboMap(mesh, [Maps.ExpMap, Maps.Vertical1DMap, actMap])