From 106921ee0d1bfbbc2e225416829967a7dc788aec Mon Sep 17 00:00:00 2001 From: Stefano Segantin Date: Tue, 5 Nov 2024 11:03:28 -0500 Subject: [PATCH] world_size -> world --- src/openmc_cad_adapter/to_cubit_journal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openmc_cad_adapter/to_cubit_journal.py b/src/openmc_cad_adapter/to_cubit_journal.py index f1536e6..98deae0 100644 --- a/src/openmc_cad_adapter/to_cubit_journal.py +++ b/src/openmc_cad_adapter/to_cubit_journal.py @@ -83,7 +83,7 @@ def to_cubit_journal(geometry : openmc.Geometry, world : Iterable[Real] = None, ' Please provide a world size argument to proceed') # to ensure that the box box_max = np.max(np.abs(bbox[0], bbox[1]).T) - world_size = (2 * box_max, 2 * box_max, 2 * box_max) + world = (2 * box_max, 2 * box_max, 2 * box_max) if world is None: raise RuntimeError("Model extents could not be determined automatically and must be provided manually")