Skip to content

Commit 71e91ae

Browse files
committed
Increase strike length to improve SNR
1 parent 5315c6d commit 71e91ae

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

simpeg_drivers/utils/synthetics/meshes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ def get_octree_mesh(
133133
elevation=0,
134134
)
135135
center = list(plate.origin)
136-
center[2] += plate.width # Unclear why offsetted vertically
136+
137137
plate = Plate(plate_options, center=center, workspace=survey.workspace)
138138
mesh = OctreeDriver.refine_tree_from_triangulation(
139139
mesh, plate.surface, levels=(4,), finalize=False

tests/run_tests/oriented_fem_receiver_test.py renamed to tests/run_tests/oriented_airborne_fem_receiver_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def test_fem_fwr_run(tmp_path: Path, azimuth, dip):
8888
model=ModelOptions(
8989
background=1e-3,
9090
plate=PlateModel(
91-
strike_length=70.0,
91+
strike_length=150.0,
9292
dip_length=100.0,
9393
width=10.0,
9494
origin=(0.0, 0.0, -60.0),

tests/run_tests/oriented_airborne_tem_receiver_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def test_tem_fwr_run(tmp_path: Path, azimuth, dip):
8282
model=ModelOptions(
8383
background=1e-3,
8484
plate=PlateModel(
85-
strike_length=70.0,
85+
strike_length=150.0,
8686
dip_length=100.0,
8787
width=10.0,
8888
origin=(0.0, 0.0, -60.0),

0 commit comments

Comments
 (0)