Correcting surface type in cylinder tests

This commit is contained in:
Patrick Shriwise 2023-03-28 10:11:14 -05:00
parent 86e9a4bd4b
commit 6cb4401230

View file

@ -113,7 +113,7 @@ def void_coincident_geom_model():
model.materials = openmc.Materials()
radii = [0.1,1, 5, 50, 100, 150, 250]
cylinders = [openmc.Sphere(r=ri) for ri in radii]
cylinders = [openmc.ZCylinder(r=ri) for ri in radii]
cylinders[-1].boundary_type = 'vacuum'
regions = openmc.model.subdivide(cylinders)[:-1]