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
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Comment thread
domfournier marked this conversation as resolved.

from .forward import DC3DForwardDriver
from .inversion import DC3DInversionDriver
from .options import DC3DForwardOptions, DC3DInversionOptions
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
from pathlib import Path

from simpeg_drivers.driver import ForwardDriver

from .options import DC3DForwardOptions
from simpeg_drivers.electricals.direct_current.three_dimensions.options import (
DC3DForwardOptions,
)


class DC3DForwardDriver(ForwardDriver):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
from pathlib import Path

from simpeg_drivers.driver import InversionDriver

from .options import DC3DInversionOptions
from simpeg_drivers.electricals.direct_current.three_dimensions.options import (
DC3DInversionOptions,
)


class DC3DInversionDriver(InversionDriver):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Comment thread
domfournier marked this conversation as resolved.

from .forward import DC2DForwardDriver
from .inversion import DC2DInversionDriver
from .options import DC2DForwardOptions, DC2DInversionOptions
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@

from simpeg_drivers.driver import ForwardDriver
from simpeg_drivers.electricals.base_2d import Base2DDriver

from .options import DC2DForwardOptions
from simpeg_drivers.electricals.direct_current.two_dimensions.options import (
DC2DForwardOptions,
)


class DC2DForwardDriver(ForwardDriver, Base2DDriver):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@

from simpeg_drivers.driver import InversionDriver
from simpeg_drivers.electricals.base_2d import Base2DDriver

from .options import DC2DInversionOptions
from simpeg_drivers.electricals.direct_current.two_dimensions.options import (
DC2DInversionOptions,
)


class DC2DInversionDriver(InversionDriver, Base2DDriver):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Comment thread
domfournier marked this conversation as resolved.

from .forward import IP3DForwardDriver
from .inversion import IP3DInversionDriver
from .options import (
IP3DForwardOptions,
IP3DInversionOptions,
)
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
from pathlib import Path

from simpeg_drivers.driver import ForwardDriver

from .options import IP3DForwardOptions
from simpeg_drivers.electricals.induced_polarization.three_dimensions.options import (
IP3DForwardOptions,
)


class IP3DForwardDriver(ForwardDriver):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
from pathlib import Path

from simpeg_drivers.driver import InversionDriver

from .options import IP3DInversionOptions
from simpeg_drivers.electricals.induced_polarization.three_dimensions.options import (
IP3DInversionOptions,
)


class IP3DInversionDriver(InversionDriver):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Comment thread
domfournier marked this conversation as resolved.

from .forward import IP2DForwardDriver
from .inversion import IP2DInversionDriver
from .options import (
IP2DForwardOptions,
IP2DInversionOptions,
)
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@

from simpeg_drivers.driver import ForwardDriver
from simpeg_drivers.electricals.base_2d import Base2DDriver

from .options import IP2DForwardOptions
from simpeg_drivers.electricals.induced_polarization.two_dimensions.options import (
IP2DForwardOptions,
)


class IP2DForwardDriver(ForwardDriver, Base2DDriver):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@

from simpeg_drivers.driver import InversionDriver
from simpeg_drivers.electricals.base_2d import Base2DDriver

from .options import IP2DInversionOptions
from simpeg_drivers.electricals.induced_polarization.two_dimensions.options import (
IP2DInversionOptions,
)


class IP2DInversionDriver(InversionDriver, Base2DDriver):
Expand Down
7 changes: 0 additions & 7 deletions simpeg_drivers/electromagnetics/frequency_domain/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Comment thread
domfournier marked this conversation as resolved.

from .forward import FDEMForwardDriver
from .inversion import FDEMInversionDriver
from .options import (
FDEMForwardOptions,
FDEMInversionOptions,
)
3 changes: 1 addition & 2 deletions simpeg_drivers/electromagnetics/frequency_domain/forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
from pathlib import Path

from simpeg_drivers.driver import ForwardDriver

from .options import FDEMForwardOptions
from simpeg_drivers.electromagnetics.frequency_domain.options import FDEMForwardOptions


class FDEMForwardDriver(ForwardDriver):
Expand Down
5 changes: 3 additions & 2 deletions simpeg_drivers/electromagnetics/frequency_domain/inversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
from pathlib import Path

from simpeg_drivers.driver import InversionDriver

from .options import FDEMInversionOptions
from simpeg_drivers.electromagnetics.frequency_domain.options import (
FDEMInversionOptions,
)


class FDEMInversionDriver(InversionDriver):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Comment thread
domfournier marked this conversation as resolved.

from .forward import FDEM1DForwardDriver
from .inversion import FDEM1DInversionDriver
from .options import (
FDEM1DForwardOptions,
FDEM1DInversionOptions,
)
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@

from simpeg_drivers.driver import ForwardDriver
from simpeg_drivers.electromagnetics.base_1d_driver import Base1DDriver

from .options import FDEM1DForwardOptions
from simpeg_drivers.electromagnetics.frequency_domain_1d.options import (
FDEM1DForwardOptions,
)


class FDEM1DForwardDriver(ForwardDriver, Base1DDriver):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@

from simpeg_drivers.driver import InversionDriver
from simpeg_drivers.electromagnetics.base_1d_driver import Base1DDriver

from .options import FDEM1DInversionOptions
from simpeg_drivers.electromagnetics.frequency_domain_1d.options import (
FDEM1DInversionOptions,
)


class FDEM1DInversionDriver(InversionDriver, Base1DDriver):
Expand Down
8 changes: 0 additions & 8 deletions simpeg_drivers/electromagnetics/time_domain/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Comment thread
domfournier marked this conversation as resolved.


from .forward import TDEMForwardDriver
from .inversion import TDEMInversionDriver
from .options import (
TDEMForwardOptions,
TDEMInversionOptions,
)
3 changes: 1 addition & 2 deletions simpeg_drivers/electromagnetics/time_domain/forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
from pathlib import Path

from simpeg_drivers.driver import ForwardDriver

from .options import TDEMForwardOptions
from simpeg_drivers.electromagnetics.time_domain.options import TDEMForwardOptions


class TDEMForwardDriver(ForwardDriver):
Expand Down
3 changes: 1 addition & 2 deletions simpeg_drivers/electromagnetics/time_domain/inversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
from pathlib import Path

from simpeg_drivers.driver import InversionDriver

from .options import TDEMInversionOptions
from simpeg_drivers.electromagnetics.time_domain.options import TDEMInversionOptions


class TDEMInversionDriver(InversionDriver):
Expand Down
7 changes: 0 additions & 7 deletions simpeg_drivers/electromagnetics/time_domain_1d/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Comment thread
domfournier marked this conversation as resolved.

from .forward import TDEM1DForwardDriver
from .inversion import TDEM1DInversionDriver
from .options import (
TDEM1DForwardOptions,
TDEM1DInversionOptions,
)
3 changes: 1 addition & 2 deletions simpeg_drivers/electromagnetics/time_domain_1d/forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,7 @@

from simpeg_drivers.driver import ForwardDriver
from simpeg_drivers.electromagnetics.base_1d_driver import Base1DDriver

from .options import TDEM1DForwardOptions
from simpeg_drivers.electromagnetics.time_domain_1d.options import TDEM1DForwardOptions


class TDEM1DForwardDriver(ForwardDriver, Base1DDriver):
Expand Down
5 changes: 3 additions & 2 deletions simpeg_drivers/electromagnetics/time_domain_1d/inversion.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@

from simpeg_drivers.driver import InversionDriver
from simpeg_drivers.electromagnetics.base_1d_driver import Base1DDriver

from .options import TDEM1DInversionOptions
from simpeg_drivers.electromagnetics.time_domain_1d.options import (
TDEM1DInversionOptions,
)


class TDEM1DInversionDriver(InversionDriver, Base1DDriver):
Expand Down
3 changes: 0 additions & 3 deletions simpeg_drivers/joint/joint_cross_gradient/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Comment thread
domfournier marked this conversation as resolved.

from .driver import JointCrossGradientDriver
from .options import JointCrossGradientOptions
3 changes: 1 addition & 2 deletions simpeg_drivers/joint/joint_cross_gradient/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
from simpeg.regularization import CrossGradient

from simpeg_drivers.joint.driver import BaseJointDriver

from .options import JointCrossGradientOptions
from simpeg_drivers.joint.joint_cross_gradient.options import JointCrossGradientOptions


class JointCrossGradientDriver(BaseJointDriver):
Expand Down
3 changes: 0 additions & 3 deletions simpeg_drivers/joint/joint_petrophysics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Comment thread
domfournier marked this conversation as resolved.

from .driver import JointPetrophysicsDriver
from .options import JointPetrophysicsOptions
6 changes: 1 addition & 5 deletions simpeg_drivers/joint/joint_petrophysics/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,8 @@
from simpeg.objective_function import ComboObjectiveFunction
from simpeg.regularization.pgi import PGIsmallness

from simpeg_drivers.components.factories import (
DirectivesFactory,
)
from simpeg_drivers.joint.driver import BaseJointDriver

from .options import JointPetrophysicsOptions
from simpeg_drivers.joint.joint_petrophysics.options import JointPetrophysicsOptions


class JointPetrophysicsDriver(BaseJointDriver):
Expand Down
3 changes: 0 additions & 3 deletions simpeg_drivers/joint/joint_surveys/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Comment thread
domfournier marked this conversation as resolved.

from .driver import JointSurveysDriver
from .options import JointSurveysOptions
3 changes: 1 addition & 2 deletions simpeg_drivers/joint/joint_surveys/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,9 @@

from simpeg_drivers.driver import InversionDriver
from simpeg_drivers.joint.driver import BaseJointDriver
from simpeg_drivers.joint.joint_surveys.options import JointSurveysOptions
from simpeg_drivers.options import ModelTypeEnum

from .options import JointSurveysOptions


logger = getLogger(__name__)

Expand Down
10 changes: 0 additions & 10 deletions simpeg_drivers/natural_sources/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''


from .magnetotellurics import (
MTForwardOptions,
MTInversionOptions,
)
from .tipper import TipperForwardOptions, TipperInversionOptions

# pylint: disable=unused-import
# flake8: noqa
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Comment thread
domfournier marked this conversation as resolved.


from .forward import AppConForwardDriver
from .inversion import AppConInversionDriver
from .options import (
AppConForwardOptions,
AppConInversionOptions,
)
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
from pathlib import Path

from simpeg_drivers.driver import ForwardDriver

from .options import AppConForwardOptions
from simpeg_drivers.natural_sources.apparent_conductivity.options import (
AppConForwardOptions,
)


class AppConForwardDriver(ForwardDriver):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,9 @@
from pathlib import Path

from simpeg_drivers.driver import InversionDriver

from .options import AppConInversionOptions
from simpeg_drivers.natural_sources.apparent_conductivity.options import (
AppConInversionOptions,
)


class AppConInversionDriver(InversionDriver):
Expand Down
7 changes: 0 additions & 7 deletions simpeg_drivers/natural_sources/magnetotellurics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,3 @@
# (see LICENSE file at the root of this source code package). '
# '
# '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
Comment thread
domfournier marked this conversation as resolved.

from .forward import MTForwardDriver
from .inversion import MTInversionDriver
from .options import (
MTForwardOptions,
MTInversionOptions,
)
3 changes: 1 addition & 2 deletions simpeg_drivers/natural_sources/magnetotellurics/forward.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,7 @@
from pathlib import Path

from simpeg_drivers.driver import ForwardDriver

from .options import MTForwardOptions
from simpeg_drivers.natural_sources.magnetotellurics.options import MTForwardOptions


class MTForwardDriver(ForwardDriver):
Expand Down
Loading
Loading