Metafor

ULiege - Aerospace & Mechanical Engineering

User Tools

Site Tools


doc:user:geometry:mesh:3d

This is an old revision of the document!




3D meshers

Transfinite mesher

Metafor possesses a simple transfinite mesher, which is able to mesh hexahedra (object with 6 sides, such as a cube). For more complex geometries, it is necessary to divide it into hexaedra or use external meshers (Samcef, TetGen, …) and import the mesh in Metafor (see Reading SAMCEF files).

Preliminary note: To mesh a Volume, all its Sides and Curves must be meshed first !

Volume hexaédrique

With auto-detection

Auto-detection is possible if the Skin has 12 edges, each of which possesses only one line.

TransfiniteMesher3D(volumeset(number)).execute(type)
number number of the Volume to mesh
type = True if mesh elements must be generated (CELL_HEXA)
= False if only nodes must be generated (useful to debug only)

In this case, the Skin must be defined tith the orientation shown below:

Définition de la skin du domaine pour l'autodétection

which means that

skin = add(Skin(1)); 
for i in [1,2,3,4,5,6]:
   skin.push(sideset(i))

where the number used in the push function are the number of the Sides included in the Skin.

Without auto-detection

This case is the most general, and can be applied to any Skin with the shape of a hexaedron. The definition of the skin must no longer be as the above figure shows, which means the sides can be “pushed” in the skin in any order.

The mesher needs a set of 12 sets of Curves, where each of these sets defines an edge of the hexaedron.

mat = ((mat11, ..., mat1nbmax), ..., (mat121, ..., mat12nbmax))
TransfiniteMesher3D(volumeset(number)).execute2(mat, type)

where number is the number of the hexahedral Volumeto mesh, and mat is a Python tuple with 12 components. Each component is a tuple which contains the number of the curves which constitute each edge. Each of these 12 edges can be made of a different number of curves.

These 12 tuples must be ordered as shown below:

Ordre des lignes dans le tuple python

Example:

Maillage manuel - géométrie initiale

The hexahedral domain above can be meshed with the command:

TransfiniteMesher3D(volumeset(1)).execute2( ((103,101,102),2,3,4,5,6,7,8,10,11,12,13) )

or

TransfiniteMesher3D(volumeset(1)).execute2( (5,11,(103,101,102),10,7,12,3,13,8,6,2,4) )

or

TransfiniteMesher3D(volumeset(1)).execute2( (6,12,2,11,8,13,4,10,5,7,3,(101,102,103)) )

or

...

leading to:

Maillage résultant

Transfinite 3D mesher with non-uniform mesh elements distribution

This is done with the commands:

MesherTFI3D =TransfiniteMesher3D(volumeset(number))
MesherTFI3D.setEnableDistribution()
MesherTFI3D.execute(type, tri) ou MesherTFI3D.execute2(mat, type)        

when one if the edges is already discretized using a mesh elements distribution.

Note : By default, the parameter setEnableDistribution is set to True.

Mesher by extrusion

This method can be used, but could be improved upon: density non-constant along the extrusion direction, improvement of meshing speed, giving the extruded nodes as groups (internal ones, external surface, …). For now on, a Side, a Skin or a Group can be extruded along any direction, with any number of elements.

The geometry associated to the extrusion can also be created (only for a Side). For a Skin or a Group, we can create the Points and Curves associated by extrusion to the Points and Curves of the object.

Example

Extrusion of a circle pierced by a square (seeapps.qs.extruMesher3d).

Extrusion d'un cercle troué

The definition and meshing of the circle can be seen in the the file. To extrude the result (Side #1):

mesher = ExtrusionMesher3D(sideset(1), groupset(1))
mesher.setFillGroup(True)
mesher.setDirection(0.0,0.0,1.0)
mesher.setLength(8)
mesher.setNbOfLayers(10)
mesher.execute()
grpNo = mesher.getLastLayer(no)
Group 1 all the mesh element refer to this group (the FieldApplicator is applied to this group)
setFillGroup() fills Group 1 with the nodes of the mesh
setDirection direction of the extrusion (by default = z)
setLength length of the extrusion
setNbOfLayers number of extruded elements
execute execute the extrusion
getLastLayer(no) returns the group grpNo (number no) which contains the nodes of the last layer

:!: When meshing in 2D, the wires must be defined “area to the left” :!:

Example 2

In a same way, a planar face meshed with triangles can be extruded in 3D to be meshed with prisms (see apps.monosMeca.monoTrac3dPenta).

Maillage d'un cube en prismes

Creation of the geometry

General case: Extrusion of a''Side'', a ''Skin'' or a ''Group''

After the extrusion of a Side, a Skin or a Group, the geometry can also be extruded from a Side with the function:

mesher.createGeometryOn(Side, NoGObject, geometry)

Geometrical objects are created and numbered starting from NoGObject.

The function createLineAbove can create only one Line corresponding to the extrusion of a Point :

line = createLineAbove(pt1, NumLine, NumPtOnTop, geometry)
line Line created (numbered: NumLine)
pt1 reference Point
NumPtOnTop number of the Point situated at the other line extremity

Particular case : extrusion of a Side

To create a geometry after the extrusion of a Side, this function is used:

mesher.createGeometry(NoGObject, geometry)

:!: To use this function, the target to extrude must be of type Side :!:

Geometrical objects are created and numbered starting from NoGObject.

Récupération des objets géométrique

The retrieval of the created geometrical objetcs is done with the functions:

Vol1  = mesher.getVolumeOnTop(side1)
side  = mesher.getSideOnTop(curveOrSide)
curve = mesher.getCurveOnTop(pointOrCurve)
point = mesher.getPointOnTop(ptref)
Vol1
side Side created from the object curveOrSide (which corresponds to a Curve or a Side of the extruded object).
If : curveOrSide = Curve → the returned Side is tangent to the extrusion direction.
If: curveOrSide = Side → the extrusion direction is a vector which is normal to the returned Side
curve Curve created from pointOrCurve (which corresponds to a Point or a Curve of the extruded object)
If : pointOrCurve = Point → the returned Curve is tangent to the extrusion direction.
If: pointOrCurve = Curve → the extrusion direction is a vector which is normal to the returned Curve
point Point created from ptref (Point of the extruded object)

The geometry is created in the test cases apps.welding.welding and aspCrushing.tests.threeD.smoothStripRoughTool.

<important note> CAREFUL, after creating the geometry, the Volume, returned by the function mesher.getVolumeOnTop(side) must be added with the push command to the FieldApplicator in place of the group (groupset(1) of the constructor of the object ExtrusionMesher3D). In the case where only one layer of elements is found in the extrusion direction, the group (groupset(1) of the constructor of the object ExtrusionMesher3D) must be added with the push command in the FieldApplicator, whichever the extruded entity (Side, Skin or Group). </note>

Mesher by extrusion of revolution

Asymmetric extrusion of a meshed side. The extrusion can be open ($0 < \mbox{angle} < 360^\circ$) or close ($\mbox{angle} = 360^\circ$).

To this day, no reconstruction of the extruded geometry exists. Groups should be used to set boundary conditions.

mesher = RevolutionExtrusionMesher3D(gobject, group, axe, angle=180.0)
setAngle(angle)
mesher.setNbOfLayers(10)
mesher.execute()
gobject Meshed 2D geometrical entity
group Group father of the 3D mesh elements
axe Line which defines the revolution axis
setLength length of the extrusion
setNbOfLayers number of extruded elements
execute executes the extrusion

Example

doc/user/geometry/mesh/3d.1407529990.txt.gz · Last modified: 2016/03/30 15:22 (external edit)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki