1

What is a mesh topology? I have read this term being used in a lot of articles dealing with meshing the computational domain, but could not understand its intuitive meaning. And why is topology called a global property? Also, what does topology mean wrt CFD analysis anyways? Thank you.

GRANZER
  • 337
  • 3
  • 16

3 Answers3

1

Depending on the context, mesh topology is the cell or mesh density and how it changes across the whole calculation field.

To get detail then the computational area is divided into cells - more cells means better detail / results but at a cost of more calculations ie it takes longer.

So, engineers look to “target” extra cells in areas of importance or relevance by increasing the mesh density in those areas and leaving other areas with fewer cells to limit or reduce the total number of cells so controlling the total time to calculate .

Some jobs I did ran for 40 days ie 40 * 24 hours - any reduction due to optimisation of the calculation field was welcome and looked for...

Solar Mike
  • 16,242
  • 1
  • 27
  • 33
0

Quoting from one paper related to FEA,

The output of a mesh generator consists of a set of nodes, and a set of elements (which represents the mesh topology). [...] The nodes are created first, and they are then connected to form triangular or quadrilateral elements. This can be divided into two subcases. If the vertexes of the object are assumed to be the only nodes in the mesh, a triangulation algorithm can be applied to create a minimum number of nonoverlapping triangles that cover the object (see Figure 10). This minimal set of triangles is determined mainly by the topology of the object. The complex topology of the object has been decomposed into the simple topology of the triangles, so this approach will be called the topology decomposition approach. The mesh thus created has distorted and mostly coarse elements, and cannot be used for analysis purposes. Mesh refinement, possibly with element rearrangements by the diagonal transpose technique, must be applied to produce a reasonable mesh.

So, colloquially, "mesh topology" may be used to indicate node density variations, face orientation variations, etc. (The term "topology" itself comes straight from mathematics, where it means the study of sets and surfaces. )

Carl Witthoft
  • 4,289
  • 1
  • 14
  • 13
0

Mesh topology, just like the mathematical definition of a topology, defines how things are connected or related. The meshing of a computational domain is made up of nodes and elements(take here line elements ie line connecting one node to another). Topology means how these nodes are connected by elements as the same nodes could be connected in other ways too and this would be another topology. If the mesh is considered as a set, and the nodes and elements are considered the part of this set then topology is how all these parts are connected or related to each other. There are different topologies on the same set.

GRANZER
  • 337
  • 3
  • 16