Skip to content

Commit 53603c4

Browse files
committed
Add PAXIS enum to PySTKFMM
1 parent 17e49a4 commit 53603c4

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

Python/PySTKFMM.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77
lib.Stk3DFMM_create.restype = c_void_p
88

99

10+
class PAXIS(enum.IntEnum):
11+
NONE = 0 # non-periodic, free-space
12+
PX = 1 # periodic along x axis
13+
PXY = 2 # periodic along XY axis
14+
PXYZ = 3 # periodic along XYZ axis
15+
16+
1017
class KERNEL(enum.IntFlag):
1118
LapPGrad = 1 # Laplace
1219
LapPGradGrad = 2 # Laplace

0 commit comments

Comments
 (0)