From b0cc6a320fc7a415e4cf6b6949025ddb472b47ae Mon Sep 17 00:00:00 2001 From: Alex Lindsay Date: Tue, 24 Oct 2017 09:01:50 -0600 Subject: [PATCH] Remove troublesome mesh_id assignment. Closes #924 --- examples/python/pincell/build-xml.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/python/pincell/build-xml.py b/examples/python/pincell/build-xml.py index 4d41a3126..a9e6a5a74 100644 --- a/examples/python/pincell/build-xml.py +++ b/examples/python/pincell/build-xml.py @@ -119,7 +119,7 @@ settings_file.export_to_xml() ############################################################################### # Instantiate a tally mesh -mesh = openmc.Mesh(mesh_id=1) +mesh = openmc.Mesh() mesh.type = 'regular' mesh.dimension = [100, 100, 1] mesh.lower_left = [-0.62992, -0.62992, -1.e50]