Page MenuHomec4science

__init__.py
No OneTemporary

File Metadata

Created
Tue, May 21, 00:19

__init__.py

# Copyright (C) 2018 by the RROMPy authors
#
# This file is part of RROMPy.
#
# RROMPy is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# RROMPy is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with RROMPy. If not, see <http://www.gnu.org/licenses/>.
#
from .laplace_base_problem_engine import LaplaceBaseProblemEngine
from .helmholtz_problem_engine import HelmholtzProblemEngine
from .scattering_problem_engine import ScatteringProblemEngine
from .helmholtz_box_scattering_problem_engine import \
HelmholtzBoxScatteringProblemEngine
from .helmholtz_cavity_scattering_problem_engine import \
HelmholtzCavityScatteringProblemEngine
from .helmholtz_square_bubble_problem_engine import \
HelmholtzSquareBubbleProblemEngine
from .helmholtz_square_bubble_domain_problem_engine import \
HelmholtzSquareBubbleDomainProblemEngine
from .helmholtz_square_transmission_problem_engine import \
HelmholtzSquareTransmissionProblemEngine
from .laplace_disk_gaussian import LaplaceDiskGaussian
from .membrane_fracture_engine_nodomain import MembraneFractureEngineNoDomain
__all__ = [
'LaplaceBaseProblemEngine',
'HelmholtzProblemEngine',
'ScatteringProblemEngine',
'HelmholtzBoxScatteringProblemEngine',
'HelmholtzCavityScatteringProblemEngine',
'HelmholtzSquareBubbleProblemEngine',
'HelmholtzSquareBubbleDomainProblemEngine',
'HelmholtzSquareTransmissionProblemEngine',
'LaplaceDiskGaussian',
'MembraneFractureEngineNoDomain'
]

Event Timeline