endf_parser 0.1.0

A Rust library for parsing ENDF-6 format nuclear data.
Documentation

endf-parser.rs

Travis (.com) branch Travis (.com) branch GitHub release (latest SemVer)

endf-parser.rs is a rust library providing utilities for parsing ENDF-6 format nuclear data.

Basics

Level 1

// Parse ENDF integer
fn main() -> Result<i64, ParseEndfIntegerError> {
    endf_parser::integer::parse("    -123456")
}
// Parse ENDF real
fn main() -> Result<i64, ParseEndfRealError> {
    endf_parser::real::parse("-1.23456+12")
}

Questions, Issues, Contributing

Contributions and Pull Request are welcome.

For questions and issues, open an issue here.

License

MIT License