From 6cb7a178e8018a2376a3488320239d2c5f2862e6 Mon Sep 17 00:00:00 2001 From: Hunter Belanger Date: Thu, 3 Nov 2022 19:09:28 +0100 Subject: [PATCH] Fix spelling error. --- openmc/data/thermal.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openmc/data/thermal.py b/openmc/data/thermal.py index 44010a0b06..12e666cdc9 100644 --- a/openmc/data/thermal.py +++ b/openmc/data/thermal.py @@ -696,7 +696,7 @@ class ThermalScattering(EqualityMixin): # For this added outgoing energy (of 0 eV) we add a set of # isotropic discrete angles. dmu = 2. / n_mu - mu = np.linsace(-1. + 0.5*dmu, 1. - 0.5*dmu, n_mu) + mu = np.linspace(-1. + 0.5*dmu, 1. - 0.5*dmu, n_mu) p_mu = 1. / n_mu * np.ones(n_mu) mu_0 = Discrete(mu, p_mu) mu_0.c = np.cumsum(p_mu)