You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
---------------------------------------------------------------------------
IndexError Traceback (most recent call last)
<ipython-input-18-7a2772fa88e0> in <module>
28
29 mesh = fidimag.atomistic.HexagonalMesh(nx=nx, ny=ny, alignment='square',
---> 30 radius=a/2.0, unit_length=unit_length, periodicity=(True, False))
~/git/fidimag/fidimag/atomistic/hexagonal_mesh.py in __init__(self, radius, nx, ny, periodicity, unit_length, alignment, shells)
176 self.unit_length = unit_length
177
--> 178 self.vertices, self.hexagons = self.init_grid()
179
180 def init_coordinates(self):
~/git/fidimag/fidimag/atomistic/hexagonal_mesh.py in init_grid(self)
303 # let the False statements just in case)
304 if W is not (False or -1): # can't replace by if W because 0 == False
--> 305 hexagon.append(hexagons[W][0]) # our NW (2) is west's NE (0)
306 else:
307 vertices.append(corners[2])
IndexError: list index out of range
The text was updated successfully, but these errors were encountered:
Returns:
The text was updated successfully, but these errors were encountered: