mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-25 04:25:29 -04:00
Co-authored-by: Baptiste Mouginot <bam.git.not.reply@gmail.com> Co-authored-by: Patrick Shriwise <pshriwise@gmail.com> Co-authored-by: azimG <azimgivron@yahoo.com> Co-authored-by: Paul Romano <paul.k.romano@gmail.com>
45 lines
1.2 KiB
Python
45 lines
1.2 KiB
Python
import importlib.metadata
|
|
from openmc.arithmetic import *
|
|
from openmc.bounding_box import *
|
|
from openmc.cell import *
|
|
from openmc.checkvalue import *
|
|
from openmc.mesh import *
|
|
from openmc.element import *
|
|
from openmc.geometry import *
|
|
from openmc.nuclide import *
|
|
from openmc.macroscopic import *
|
|
from openmc.material import *
|
|
from openmc.plots import *
|
|
from openmc.region import *
|
|
from openmc.volume import *
|
|
from openmc.weight_windows import *
|
|
from openmc.surface import *
|
|
from openmc.universe import *
|
|
from openmc.dagmc import *
|
|
from openmc.source import *
|
|
from openmc.settings import *
|
|
from openmc.lattice import *
|
|
from openmc.filter import *
|
|
from openmc.filter_expansion import *
|
|
from openmc.trigger import *
|
|
from openmc.tally_derivative import *
|
|
from openmc.tallies import *
|
|
from openmc.mgxs_library import *
|
|
from openmc.executor import *
|
|
from openmc.statepoint import *
|
|
from openmc.summary import *
|
|
from openmc.particle_restart import *
|
|
from openmc.mixin import *
|
|
from openmc.plotter import *
|
|
from openmc.search import *
|
|
from openmc.polynomial import *
|
|
from openmc.tracks import *
|
|
from .config import *
|
|
|
|
# Import a few names from the model module
|
|
from openmc.model import Model
|
|
|
|
from . import examples
|
|
|
|
|
|
__version__ = importlib.metadata.version("openmc")
|