Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion simpeg_drivers-assets/uijson/joint_surveys_inversion.ui.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,9 @@
"main": true,
"group": "Mesh and models",
"label": "Model units",
"tooltip": "Select the units of the model",
"tooltip": "Change the model units between S/m or Ohm.m, for electromagnetic and direct-current surveys.",
"optional": true,
"enabled": false,
"value": "Conductivity (S/m)"
},
"starting_model": {
Expand Down
2 changes: 1 addition & 1 deletion simpeg_drivers/joint/joint_surveys/options.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ class JointSurveysModelOptions(JointModelOptions):
:param reference_model: The reference model for the inversion.
"""

model_type: ModelTypeEnum = ModelTypeEnum.conductivity
model_type: ModelTypeEnum | None = ModelTypeEnum.conductivity
starting_model: float | FloatData | None = None
reference_model: float | FloatData | None = None

Expand Down
1 change: 1 addition & 0 deletions tests/run_tests/driver_joint_surveys_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,7 @@ def test_joint_surveys_tem_run(
mesh=components.mesh,
group_a=driver_A.out_group,
group_b=driver_B.out_group,
model_type=None,
starting_model=1e-3,
)

Expand Down
Loading