From 9fec4cbb859e2298b6b2a4169cfa8dfde29587fe Mon Sep 17 00:00:00 2001 From: Anne van de Graaf Date: Fri, 20 Sep 2024 09:12:30 +0200 Subject: [PATCH] Processed Wijtze Pieter's review comments Clarified the opposite orientation of the geometry's second edge. --- .../GeoMechanicsApplication/custom_geometries/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/GeoMechanicsApplication/custom_geometries/README.md b/applications/GeoMechanicsApplication/custom_geometries/README.md index 51febef06e80..38b48206dbe2 100644 --- a/applications/GeoMechanicsApplication/custom_geometries/README.md +++ b/applications/GeoMechanicsApplication/custom_geometries/README.md @@ -17,4 +17,4 @@ Similarly, the 3+3 line interface geometry has the following node numbering for One thing to note, is that this line interface geometry does not implement functions from the Geometry base class which are related to the integration scheme. That is because most of the time, interface geometries are used with a Lobatto integration scheme, which is not supported by the Geometry base class. -Any line interface geometry has two edges. The first edge coincides with the first side (i.e. bottom side in the above figures) of the geometry. The first edge's nodes are identical to the nodes at the first edge. For the 3+3 line interface geometry this means the list of node IDs equals [1, 2, 3]. The second edge references the nodes of the second side (i.e. top side in the above figures) of the line interface geometry. However, this edge traverses the second side in opposite direction. This implies that the end nodes will be swapped and any high-order nodes are reversed. For instance, for the 3+3 line interface geometry the second edge's nodes are ordered as follows: [5, 4, 6]; \ No newline at end of file +Any line interface geometry has two edges. The first edge coincides with the first side (i.e. bottom side in the above figures) of the geometry. The ordering of the first edge's nodes is identical to the one of the first side. For the 3+3 line interface geometry this means the list of node IDs equals [1, 2, 3]. The second edge references the nodes of the second side (i.e. top side in the above figures) of the line interface geometry. However, this edge has opposite orientation compared to the side, and therefore a node numbering according to the opposite direction. With respect to the node numbering of the side, this implies that the end nodes will be swapped and any high-order nodes are reversed. For instance, for the 3+3 line interface geometry the second edge's nodes are ordered as follows: [5, 4, 6]; \ No newline at end of file