Hi there! I’m trying to read the nuclear data of ENDFB VIII for some nuclides. Particularly, I am interested in knowing energy dependent
- Fission Cross-section
- Absorption Cross-section
3.Transport cross-section - Chi value
- Scattering Cross-section
I tried usingopenmc.data.DataLibrary()
API, and used theget_by_material()
class. For example I usedopenmc.data.DataLibrary.get_by_material('U235', data_type='neutron')
but I get an error telling me that
TypeError: get_by_material() missing 1 required positional argument: 'name'
My cross-section is globally declared in the .bashrc file, and also note that if I typeopenmc.data.DataLibrary.from_xm()
, I get a valid output which is<openmc.data.library.DataLibrary at 0x7f291a5fed50>
.
Can anyone help me in this regard?
Thank you!