hello, I have a question, how I can read the values inside the (summary.h5)?
Hi @MohammedAhmed2. This can be done using the openmc.Summary class. Once you load in a file, you can look at the geometry and materials attributes, which are normal instances of the Geometry and Materials classes:
import openmc
summary = openmc.Summary('summary.h5')
geom = summary.geometry
mats = summary.materials
...
thanks for replying, appreciate it.