mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-24 03:55:38 -04:00
24 lines
455 B
Python
24 lines
455 B
Python
"""
|
|
openmc.deplete
|
|
==============
|
|
|
|
A depletion front-end tool.
|
|
"""
|
|
|
|
from .dummy_comm import DummyCommunicator
|
|
try:
|
|
from mpi4py import MPI
|
|
comm = MPI.COMM_WORLD
|
|
have_mpi = True
|
|
except ImportError:
|
|
comm = DummyCommunicator()
|
|
have_mpi = False
|
|
|
|
from .nuclide import *
|
|
from .chain import *
|
|
from .operator import *
|
|
from .reaction_rates import *
|
|
from .abc import *
|
|
from .results import *
|
|
from .results_list import *
|
|
from .integrator import *
|