nkl 0.0.5

Nuclear Kernel Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! A Compact ENDF (ACE) format module.
//!
//! # References
//!
//! Conlin, J. L., & Romano, P. (2019). *A compact ENDF (ACE) format specification*
//! (No. LA-UR-19-29016). Los Alamos National Lab.(LANL), Los Alamos, NM (United States).

mod error;
pub use error::AceError;

mod table;
pub use table::Table;

mod parse;
pub use parse::parse_ace_table;