mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-21 14:35:27 -04:00
37 lines
924 B
Python
37 lines
924 B
Python
# Version of HDF5 nuclear data format
|
|
HDF5_VERSION_MAJOR = 3
|
|
HDF5_VERSION_MINOR = 0
|
|
HDF5_VERSION = (HDF5_VERSION_MAJOR, HDF5_VERSION_MINOR)
|
|
|
|
# Version of WMP nuclear data format
|
|
WMP_VERSION_MAJOR = 1
|
|
WMP_VERSION_MINOR = 1
|
|
WMP_VERSION = (WMP_VERSION_MAJOR, WMP_VERSION_MINOR)
|
|
|
|
|
|
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 *
|
|
from .multipole import *
|
|
from .grid import *
|
|
from .function import *
|
|
|
|
from .effective_dose.dose import dose_coefficients
|