File: gengeo_example7.py

package info (click to toggle)
python-demgengeo 1.4-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,000 kB
  • sloc: cpp: 13,449; python: 1,260; makefile: 304; sh: 90
file content (92 lines) | stat: -rw-r--r-- 2,516 bytes parent folder | download | duplicates (3)
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
#############################################################
##                                                         ##
## 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 __future__ import division, print_function
from gengeo     import *
#An example python script to generate an aggregate of hexagonal grains
# with circular boundary conditions and tagging of particles along lines

# Define region extremities:
size = 5.0
minPoint = Vector3(0.0,0.0,0.0)
maxPoint = Vector3(size,size,0.0)

# Define the geometrical constraints for packing
top_line = Line2D (
   startPoint = Vector3(size,0.0,0.0),
   endPoint = minPoint
)

bottom_line = Line2D (
   startPoint = maxPoint,
   endPoint = Vector3(0.0,size,0.0)
)

box = BoxWithLines2DSubVol (
   minPoint = minPoint-Vector3(-0.5,0.0,0.0),
   maxPoint = maxPoint+Vector3(0.5,0.0,0.0),
   svdim_x = 2.5,
   svdim_y = 2.5
)
box.addLine(top_line)
box.addLine(bottom_line)

# Create a multi-group neighbour table to contain the particles:
mntable = CircMNTable2D (
   minPoint = minPoint,
   maxPoint = maxPoint,
   gridSize = 2.5
)

# Fill the volume with particles:
packer = HexAggregateInsertGenerator2D (
   minRadius = 0.1,
   maxRadius = 1.0,
   insertFails = 1000,
   maxIterations = 1000,
   tolerance = 1.0e-6
)

# Generate the packing
packer.generatePacking(
   volume = box, 
   ntable = mntable,
   tag = 0
)

# tag particles along the top_line and bottom_line
mntable.tagParticlesAlongLineWithMask(
   line = top_line,
   distance = 0.5,
   tag = 4,
   mask = 4
)

#and the compact form:
mntable.tagParticlesAlongLineWithMask(bottom_line, 0.5, 8, 8, 0)

#print the porosity of the particle packing:
volume = size*size
porosity = (volume - mntable.getSumVolume())/volume
print("Porosity:  ",porosity)

# write a geometry file in VTK format
mntable.write(
   fileName = "temp/geo_example7.vtu",
   outputStyle = 2
)

# write a geometry file in ESyS-Particle geo format
mntable.write(
   fileName = "temp/geo_example7.geo",
   outputStyle = 1
)