mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-21 22:45:33 -04:00
32 lines
760 B
Python
32 lines
760 B
Python
# Version of HDF5 nuclear data format
|
|
HDF5_VERSION_MAJOR = 1
|
|
HDF5_VERSION_MINOR = 0
|
|
HDF5_VERSION = (HDF5_VERSION_MAJOR, HDF5_VERSION_MINOR)
|
|
|
|
# Version of WMP nuclear data format
|
|
WMP_VERSION = 'v0.2'
|
|
|
|
|
|
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 *
|
|
from .multipole import *
|
|
from .grid import *
|