wallstructure=hoomd.md.wall.group()
wall_x = wallstructure.add_plane((box_edge/2, 0.0, 0.0),normal=(-1.0, 0.0, 0.0), inside=True)
wall_mx = wallstructure.add_plane((-box_edge/2, 0.0, 0.0),normal=(1.0, 0.0, 0.0), inside=True)
wall_y = wallstructure.add_plane((0.0, box_edge/2, 0.0),normal=(0.0, -1.0, 0.0), inside=True)
wall_my = wallstructure.add_plane((0.0, -box_edge/2, 0.0),normal=(0.0, 1.0, 0.0), inside=True)
wall_z = wallstructure.add_plane((0.0, 0.0, box_edge/2),normal=(0.0, 0.0, -1.0), inside=True)
wall_mz = wallstructure.add_plane((0.0, 0.0, -box_edge/2),normal=(0.0, 0.0, 1.0), inside=True)
#[wall_x,wall_mx,wall_y,wall_my,wall_z,wall_mz]
print(wallstructure)
# create a simple cubic lattice of 125 particles
system = init.create_lattice(unitcell=lattice.sc(a=r_min), n=1) snapshot = system.take_snapshot(all=True)