endf-parser.rs
is a rust library providing utilities for parsing ENDF-6 format nuclear data.
Level 1 is used to parse ENDF primitives. It includes: - integers - reals - text
rust
// Parse ENDF integer
fn main() -> Result<i64, ParseEndfIntegerError> {
endf_parser::primitive::integer::parse(" -123456")
}
rust
// Parse ENDF real
fn main() -> Result<i64, ParseEndfRealError> {
endf_parser::primitive::real::parse("-1.23456+12")
}
Level 2 is for parsing ENDF records. It includes following records: - CONT - DIR - HEAD - LIST - TAB1 - TEXT
rust
fn main() -> Result<Cont, ParseEndfRecordError> {
endf_parser::record::cont::Cont::parse(
"-1.23456789+1.23456789 1 12 123 123412341212312345\n"
)
}
Contributions and Pull Request are welcome.
For questions and issues, open an issue here.