1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
/////////////////////////////////////////////////////////////
// //
// Copyright (c) 2007-2011 by The University of Queensland //
// Earth Systems Science Computational Centre (ESSCC) //
// http://www.uq.edu.au/esscc //
// //
// Primary Business: Brisbane, Queensland, Australia //
// Licensed under the Open Software License version 3.0 //
// http://www.opensource.org/licenses/osl-3.0.php //
// //
/////////////////////////////////////////////////////////////
#include <boost/version.hpp>
#include <iostream>
#include <sstream>
#include "HGrainGenerator2DPy.h"
using namespace boost::python;
using boost::python::arg;
void exportHGrainGenerator2D()
{
// Check that Boost 1.34.0 or higher is being used.
// If so, disable auto-generation of C++ signatures for Epydoc
// (which stumbles over indentation in the auto-generated strings).
#if ((BOOST_VERSION / 100000 >= 1) \
&& (BOOST_VERSION / 100 % 1000 >= 34)) \
|| (BOOST_VERSION / 100000 >= 2)
boost::python::docstring_options no_autogen(true,false);
#endif
class_<HGrainGenerator2D, bases<AGenerator2D> >(
"HGrainGenerator2D",
"A particle packing algorithm for filling 2D spaces with hexagonal grains.",
init<>()
)
.def(init<const HGrainGenerator2D &>())
.def(
init<double>(
( arg("radius") ),
"Initialises a particle packer in preparation for filling "
"L{AVolume2D} with bonded hexagonal grains of particles of a specified radius, positioned on a regular base lattice.\n"
"Bonds within hexagonal grains are assigned bondTag=2. No bonds are generated between hex. grains.\n"
"@type radius: double\n"
"@kwarg radius: the radius of grains to pack\n"
"@rtype: void\n"
)
)
.def(
"generatePacking",
&HGrainGenerator2D::generatePacking,
( arg("volume"), arg("ntable"), arg("groupID")=0, arg("tag") ),
"Generates an assembly of haxagonal grains to fill the specified volume.\n"
"@type volume: L{BoxWithLines2D}\n"
"@kwarg volume: the 2D volume to fill with particles\n"
"@type ntable: L{MNTable2D}\n"
"@kwarg ntable: the neighbours table particles are inserted into\n"
"@type groupID: int\n"
"@kwarg groupID: the group ID assigned to particles (default: 0)\n"
"@type tag: int\n"
"@kwarg tag: the tag assigned to particles\n"
"@rtype: void\n"
)
.def(self_ns::str(self))
;
}
|