From 1e94a0c7d7126dc68e0dfdda933a9142e8cd1f42 Mon Sep 17 00:00:00 2001 From: RemDelaporteMathurin Date: Thu, 2 Feb 2023 09:39:23 -0500 Subject: [PATCH] fixed theta_grid spherical mesh --- tests/unit_tests/test_spherical_mesh.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/unit_tests/test_spherical_mesh.py b/tests/unit_tests/test_spherical_mesh.py index 711570fb31..d6ac435c2e 100644 --- a/tests/unit_tests/test_spherical_mesh.py +++ b/tests/unit_tests/test_spherical_mesh.py @@ -35,7 +35,7 @@ def model(): # build mesh = openmc.SphericalMesh() mesh.phi_grid = np.linspace(0, 2*np.pi, 21) - mesh.theta_grid = np.linspace(0, 2*np.pi, 11) + mesh.theta_grid = np.linspace(0, np.pi, 11) mesh.r_grid = np.linspace(0, geom_size, geom_size) tally = openmc.Tally()