I was trying to use openmc.examples module to see the reactor models like openmc,examples.pwr_core , openmc.examples.pwr_assembly, and openmc.examples.pwr_pincell in the python api. I first imported the openmc.examples module in the python api then entered the reactor models. But the output result says something shown in the screen shot attached. My question is like the openmc.model module, does the openmc.examples module module have any input parameter or anything else. Thank you!
Each of the functions in the openmc.examples module gives you a Model object, which has geometry, materials, settings, and tallies attributes. It also has an export_to_xml() method that will write out each of those objects to an XML file, as well as a run() method that will both export the XML and then run OpenMC. The full API for this class is given here.
Best,
Paul