52 cell_flag_ghost = 1 << 0,
53 cell_flag_wait = 1 << 1,
54 cell_flag_waited = 1 << 2,
55 cell_flag_marked = 1 << 3,
56 cell_flag_large = 1 << 4,
58 cell_active_top = 1 << 5,
59 cell_active_bottom = 1 << 6,
60 cell_active_left = 1 << 7,
61 cell_active_right = 1 << 8,
62 cell_active_front = 1 << 9,
63 cell_active_back = 1 << 10,
65 cell_periodic_top = 1 << 11,
66 cell_periodic_bottom = 1 << 12,
67 cell_periodic_left = 1 << 13,
68 cell_periodic_right = 1 << 14,
69 cell_periodic_front = 1 << 15,
70 cell_periodic_back = 1 << 16,
72 cell_periodic_x = cell_periodic_left | cell_periodic_right,
73 cell_periodic_y = cell_periodic_front | cell_periodic_back,
74 cell_periodic_z = cell_periodic_top | cell_periodic_bottom,
76 cell_active_x = cell_active_left | cell_active_right,
77 cell_active_y = cell_active_front | cell_active_back,
78 cell_active_z = cell_active_top | cell_active_bottom,
80 cell_active_any = cell_active_top |
Include Python header, disable linking to pythonX_d.lib on Windows in debug mode.
Definition tfAngleConfig.h:26
struct Particle * space_cell_add(struct space_cell *c, struct Particle *p, struct Particle **partlist)
Add a particle to a cell.
HRESULT space_cell_flush(struct space_cell *c, struct Particle **partlist, struct space_cell **celllist)
Flush all the parts from a #cell.
HRESULT space_cell_load(struct space_cell *c, struct Particle *parts, int nr_parts, struct Particle **partlist, struct space_cell **celllist)
Load a block of particles to the cell.
HRESULT space_cell_init(struct space_cell *c, int *loc, FPTYPE *origin, FPTYPE *dim)
Initialize the given cell.
Definition tfParticle.h:101