Skip to content

Commit f90ee5e

Browse files
committed
Better default freqws, good run
1 parent faf17d6 commit f90ee5e

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

simpeg_drivers/utils/synthetics/surveys/natural_sources/apparent_conductivity.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def generate_apparent_conductivity_survey(
2222
X: np.ndarray,
2323
Y: np.ndarray,
2424
Z: np.ndarray,
25-
channels: tuple = (10.0, 50.0, 200.0),
25+
channels: tuple = (50.0, 500.0, 5000.0),
2626
name: str = "survey",
2727
) -> AirborneAppConReceivers:
2828
"""Create a Tipper survey object from survey grid locations."""

tests/run_tests/driver_app_con_test.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
# To test the full run and validate the inversion.
4141
# Move this file out of the test directory and run.
4242

43-
target_run = {"data_norm": 0.01938047698245966, "phi_d": 1.54, "phi_m": 59.3}
43+
target_run = {"data_norm": 0.017971709375948795, "phi_d": 206, "phi_m": 8570}
4444

4545

4646
def test_app_con_fwr_run(
@@ -65,10 +65,11 @@ def test_app_con_fwr_run(
6565
background=100.0,
6666
anomaly=1.0,
6767
plate=PlateModel(
68-
strike_length=40.0,
69-
dip_length=40.0,
70-
width=40.0,
71-
origin=(0.0, 0.0, -40.0),
68+
strike_length=60.0,
69+
dip_length=60.0,
70+
width=60.0,
71+
dip=90,
72+
origin=(0.0, 0.0, -90.0),
7273
),
7374
),
7475
)
@@ -136,17 +137,16 @@ def test_app_con_run(tmp_path: Path, max_iterations=1, pytest=True):
136137
topography_object=topography,
137138
data_object=survey,
138139
starting_model=1e2,
139-
reference_model=1e2,
140+
reference_model=None,
140141
background_conductivity=1e2,
141142
s_norm=1.0,
142143
x_norm=1.0,
143144
y_norm=1.0,
144145
z_norm=1.0,
145146
alpha_s=1.0,
146147
model_type="Resistivity (Ohm-m)",
147-
lower_bound=0.75,
148148
max_global_iterations=max_iterations,
149-
initial_beta_ratio=1e3,
149+
initial_beta_ratio=1e1,
150150
cooling_rate=1,
151151
percentile=100,
152152
chi_factor=0.1,

0 commit comments

Comments
 (0)