Skip to content

Commit

Permalink
Fix comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dschwoerer committed Dec 9, 2024
1 parent 035c2e8 commit 7268a9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zoidberg/poloidal_grid.py
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ def __init__(self, R, Z):

xinds = np.arange(nx)
zinds = np.arange(nz * 3)
# Repeat the final point in y since periodic in y
# Repeat the data in z, to approximate periodicity
R_ext = np.concatenate((R, R, R), axis=1)
Z_ext = np.concatenate((Z, Z, Z), axis=1)

Expand Down

0 comments on commit 7268a9b

Please sign in to comment.