Creating Cross Section Files at 959K and 900K

Hello, I am trying to create a custom cross section file at high temperatures (900K and 959K) for both thermal scattering data and incident neutron data for graphite, FLiBe, and U235. I’m not sure how to go about doing this or if what I was doing is correct? I believe I have code which makes the necessary .h5 files for uranium, but I don’t know how to do the same for thermal scattering with graphite at 900K:

Here is the uranium:

Also when actually using these files in simulations, do you still need to define the temperature of the material? Or can I just register the cross section file “as is” and just run it?

Thank you!

The forum only allows me to upload one photo, here is the code snippet I have for graphite which uses ACE files:

Hello @rogejose, i think for the library from endf, we should also add the temperatures parameter in from_njoy method:

openmc.data.IncidentNeutron.from_njoy(endf_file_path, temperatures = [900, 959, other_temperatures...])

Also in the simulation, we should define the temperature in the material / cell (I prefer to put temperature in cell).