From df809d619170852cc9bc9a1eefc52900b9e10f91 Mon Sep 17 00:00:00 2001 From: rockfool Date: Thu, 30 Jan 2020 21:04:49 -0500 Subject: [PATCH] fix a typo --- openmc/polynomial.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openmc/polynomial.py b/openmc/polynomial.py index b6acf58457..235800b408 100644 --- a/openmc/polynomial.py +++ b/openmc/polynomial.py @@ -94,7 +94,7 @@ class Zernike(Polynomial): r : float Position to be evaluated, normalized on radius [0,1] theta : float - Polar angular position to be evaluated, normalized on :math:`[0, 2*\pi]` + Azimuthal to be evaluated, normalized on :math:`[0, 2*\pi]` Attributes ---------- @@ -103,7 +103,7 @@ class Zernike(Polynomial): radius : float Domain of Zernike polynomials to be applied on. Default is 1. theta : float - Polar angle of Zernike polynomial to be applied on. Default is 0. + Azimuthal of Zernike polynomial to be applied on. Default is 0. norm_coef : iterable of float The list of coefficients of each term in the polynomials after normailization.