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
3 changes: 2 additions & 1 deletion simpeg_drivers-assets/uijson/sensitivity_cutoff.ui.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"mesh": {
"main": true,
"meshType": [
"4ea87376-3ece-438b-bf12-3479733ded46"
"{4ea87376-3ece-438b-bf12-3479733ded46}",
"{c94968ea-cf7d-11eb-b8bc-0242ac130003}"
],
"label": "Mesh",
"value": ""
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

from geoapps_utils.base import Options
from geoh5py.data import FloatData
from geoh5py.objects import Octree
from geoh5py.objects import DrapeModel, Octree
from pydantic import field_validator

from simpeg_drivers import assets_path
Expand All @@ -23,7 +23,7 @@ class SensitivityCutoffOptions(Options):
"""
Sensitivity cutoff parameters for depth of investigation studies.

:param mesh: Octree mesh containing saved sensitivities.
:param mesh: Octree mesh or DrapeModel containing saved sensitivities.
:param sensitivity_model: Saved row-sum-squared sensitivity data.
:param sensitivity_cutoff: Sensitivity percentage below which the
model's influence to the data is considered negligible.
Expand All @@ -41,7 +41,7 @@ class SensitivityCutoffOptions(Options):
run_command: str = "simpeg_drivers.depth_of_investigation.sensitivity_cutoff.driver"

conda_environment: str = "simpeg_drivers"
mesh: Octree
mesh: Octree | DrapeModel
sensitivity_model: FloatData
Comment thread
benk-mira marked this conversation as resolved.
Comment thread
benk-mira marked this conversation as resolved.
sensitivity_cutoff: float = 0.1
cutoff_method: str = "percentile"
Expand Down
Loading