OpenMC/openmc/data/__init__.py

33 lines
760 B
Python
Raw Normal View History

# Version of HDF5 nuclear data format
HDF5_VERSION_MAJOR = 1
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
2016-12-05 15:49:02 -05:00
WMP_VERSION = 'v0.2'
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 .function 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 *
2016-12-01 17:18:28 -05:00
from .multipole import *
from .grid import *