Skip to content

Commit

Permalink
Merge branch 'master' into rc/doclink
Browse files Browse the repository at this point in the history
  • Loading branch information
f0uriest authored Sep 25, 2023
2 parents 9db5f1e + 8332d11 commit 449fb4f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions desc/grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ class Grid(_Grid):
etc may be wrong if grid contains duplicate nodes.
"""

def __init__(self, nodes, sort=True, jitable=False):
def __init__(self, nodes, sort=False, jitable=False):
# Python 3.3 (PEP 412) introduced key-sharing dictionaries.
# This change measurably reduces memory usage of objects that
# define all attributes in their __init__ method.
Expand Down Expand Up @@ -500,11 +500,14 @@ class LinearGrid(_Grid):
Should be False for use with FFT. (Default = False).
This boolean is ignored if an array is given for theta or zeta.
rho : ndarray of float, optional
Radial coordinates (Default = 1.0).
Radial coordinates (Default = 1.0). Note that if supplied the values may be
reordered in the resulting grid.
theta : ndarray of float, optional
Poloidal coordinates (Default = 0.0).
Poloidal coordinates (Default = 0.0). Note that if supplied the values may be
reordered in the resulting grid.
zeta : ndarray of float, optional
Toroidal coordinates (Default = 0.0).
Toroidal coordinates (Default = 0.0). Note that if supplied the values may be
reordered in the resulting grid.
"""

Expand Down

0 comments on commit 449fb4f

Please sign in to comment.