OpenMC/openmc/data/__init__.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

41 lines
1 KiB
Python
Raw Permalink Normal View History

# Version of HDF5 nuclear data format
2019-05-23 09:22:44 -05:00
HDF5_VERSION_MAJOR = 3
HDF5_VERSION_MINOR = 0
HDF5_VERSION = (HDF5_VERSION_MAJOR, HDF5_VERSION_MINOR)
2016-12-01 17:18:28 -05:00
# Version of WMP nuclear data format
2018-10-19 16:48:12 -04:00
WMP_VERSION_MAJOR = 1
WMP_VERSION_MINOR = 1
WMP_VERSION = (WMP_VERSION_MAJOR, WMP_VERSION_MINOR)
2016-12-01 17:18:28 -05:00
from .data import *
from .neutron import *
from .photon import *
from .decay import *
from .reaction import *
from . import ace
from .angle_distribution import *
from . import endf
from .energy_distribution import *
from .product import *
from .angle_energy import *
from .uncorrelated import *
from .correlated import *
from .kalbach_mann import *
from .nbody import *
from .thermal import *
from .urr import *
from .library import *
from .fission_energy import *
from .resonance import *
from .resonance_covariance import *
2016-12-01 17:18:28 -05:00
from .multipole import *
from .grid import *
from .function import *
from .vectfit import *
from .dose.dose import dose_coefficients
from .dose.mass_attenuation import \
mass_energy_absorption_coefficient, mass_attenuation_coefficient