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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
#############################################################
## ##
## Copyright (c) 2007-2017 by The University of Queensland ##
## Centre for Geoscience Computing ##
## http://earth.uq.edu.au/centre-geoscience-computing ##
## ##
## Primary Business: Brisbane, Queensland, Australia ##
## Licensed under the Open Software License version 3.0 ##
## http://www.apache.org/licenses/LICENSE-2.0 ##
## ##
#############################################################
from gengeo import Vector3, Line2D, BoxWithLines2D, MNTable2D, InsertGenerator2D
#An example python script to generate a 2D bonded rectangle of particles
# Define region extremities:
minPoint = Vector3(0.0,0.0,0.0)
maxPoint = Vector3(10.0,10.0,0.0)
# Define the volume to be filled with spheres:
box = BoxWithLines2D (
minPoint = minPoint,
maxPoint = maxPoint
)
# Define the geometrical constraints for packing
top_line = Line2D (
startPoint = Vector3(10.0,0.0,0.0),
endPoint = minPoint
)
bottom_line = Line2D (
startPoint = maxPoint,
endPoint = Vector3(0.0,10.0,0.0)
)
left_line = Line2D (
startPoint = Vector3(10.0,0.0,0.0),
endPoint = maxPoint
)
right_line = Line2D (
startPoint = minPoint,
endPoint = Vector3(0.0,10.0,0.0)
)
box.addLine(top_line)
box.addLine(bottom_line)
box.addLine(left_line)
box.addLine(right_line)
# Create a multi-group neighbour table to contain the particles:
mntable = MNTable2D (
minPoint = minPoint, # specific regional extremities
maxPoint = maxPoint,
gridSize = 2.5 # neighbour search algorithm grid size
)
# Fill the volume with particles:
packer = InsertGenerator2D (
minRadius = 0.1, # minimum radius of spheres to insert
maxRadius = 0.4, # maximum radius of spheres to insert
insertFails = 5000, # maximum number of insertion failures
maxIterations = 1000, # max. iterations for Newton-Raphson solver
tolerance = 1.0e-5 # max. allowable overlap of spheres
)
packer.generatePacking( volume = box, ntable = mntable, tag = 0)
# create bonds between neighbouring particles:
mntable.generateBonds(
tolerance = 1.0e-5, # max. gap between "touching" particles
bondID = 0 # bond ID of created bonds
)
# write the geometry to a file in raw format
mntable.write(
fileName = "temp/geo_example1.txt",
outputStyle = 0
)
# write the geometry to an ESyS-Particle geometry file
mntable.write(
fileName = "temp/geo_example1.geo",
outputStyle = 1
)
# write the geometry as a VTK file
mntable.write(
fileName = "temp/geo_example1.vtu",
outputStyle = 2
)
|