ENDFtk icon indicating copy to clipboard operation
ENDFtk copied to clipboard

Toolkit for reading and interacting with ENDF-6 formatted files

Results 18 ENDFtk issues
Sort by recently updated
recently updated
newest added

This update removes a few interface functions that are unused and that I wanted to remove to make the removal of range-v3 a bit simpler: - the regions() and pairs()...

Using U235 from ENDF-B-VIII.0 (n-092_U_235.endf) with the njoy file below I notice some issues when trying to parse the output (tape50) in ENDFtk. ```njoy moder 20 -30 reconr -30 -21...

The procedures part of the ENDF manual MF8 MT457 states that NT can be 8. In the latest version/branch of ENDFtk, we verify if NT is equal to 4, 6...

The ENDF manual says that the multiplicities must always be 1, not just "normally one". Thus, it doesn't really make sense to require it as an input. I think the...

For example: - to easily identify resonance formalisms and types: ResonanceType.resolved and ResonanceType.unresolved We can then write code like: ```python if resonances.LRU == Formalism.ReichMoore : print( 'found one' ) ```...

enhancement

Here is the start of GENDF capabilities reimagined. This represents a good start, but there's quite a bit more to do. `CrossSection` still needs constructors from parameters. Then, there will...

Elementary is an NJOY component that allows us to identify nuclides, nuclei, elements, etc. See here for more information: https://github.com/njoy/elementary A development version has python bindings for this library. One...

enhancement

This pull request adds the ability to read a GENDF file via the syntaxTree and to do basic parsing of cross section (MFD 3) and transfer matrix (MFD 6) sections....

This would allow us to retrieve the parameters and description without having to re-enter them in the constructor when we only want to modify the directory.

enhancement