We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Per correspondence with Jon Shimwell,
"By the way we noticed this section of code with the hard code 10,000cm radius sphere"
univ = openmc.DAGMCUniverse( filename='geometryInput-dagmcFile.dagmc.h5m', auto_geom_ids=True, ) graveyard = openmc.Sphere(r=10000, boundary_type="vacuum") root = openmc.Universe() root.add_cells([openmc.Cell(region=-graveyard, fill=univ)])
could be rewritten as this to give a more compact graveyard and perhaps less zooming in for the user when visualizing
root = openmc.DAGMCUniverse( filename='geometryInput-dagmcFile.dagmc.h5m', auto_geom_ids=True ).bounded_universe()
The text was updated successfully, but these errors were encountered:
moellep
No branches or pull requests
Per correspondence with Jon Shimwell,
"By the way we noticed this section of code with the hard code 10,000cm radius sphere"
could be rewritten as this to give a more compact graveyard and perhaps less zooming in for the user when visualizing
The text was updated successfully, but these errors were encountered: