mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-21 14:35:27 -04:00
Correcting surface type in cylinder tests
This commit is contained in:
parent
86e9a4bd4b
commit
6cb4401230
1 changed files with 1 additions and 1 deletions
|
|
@ -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]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue