From 2cbfedd1898dba1dff0b21cae08c71ad63f07c3f Mon Sep 17 00:00:00 2001 From: Knut Andreas Meyer Date: Sun, 29 Dec 2024 08:57:20 +0100 Subject: [PATCH] Correct edge and face denotation for 1d and 2d refshape docs --- src/docs.jl | 37 +++++++++++++++++++++++++------------ 1 file changed, 25 insertions(+), 12 deletions(-) diff --git a/src/docs.jl b/src/docs.jl index 058f6bd49d..7be4276425 100644 --- a/src/docs.jl +++ b/src/docs.jl @@ -12,9 +12,8 @@ Vertex numbers: | Vertex coordinates: 1-------2 | v1: 𝛏 = (-1.0,) --> ξ₁ | v2: 𝛏 = ( 1.0,) ----------------+-------------------- -Face numbers: | Face identifiers: - 1-------2 | f1: (v1,) - | f2: (v2,) +Edge numbers: | Edge identifiers: + +---1---+ | e1: (v1, v2) ----------------+-------------------- ``` """ @@ -34,13 +33,20 @@ Vertex numbers: | Vertex coordinates: | 3-------1 | +--> ξ₁ | ----------------+-------------------- -Face numbers: | Face identifiers: +Edge numbers: | Edge identifiers: + | - | \ | f1: (v1, v2) - 2 1 | f2: (v2, v3) - | \ | f3: (v3, v1) + | \ | e1: (v1, v2) + 2 1 | e2: (v2, v3) + | \ | e3: (v3, v1) +---3---+ | ----------------+-------------------- +Face numbers: | Face identifiers: + + | + | \ | + | \ | f1: (v1, v2, v3) + | 1 \ | + +-------+ | +----------------+-------------------- ``` """ RefTriangle @@ -59,13 +65,20 @@ Vertex numbers: | Vertex coordinates: | 1-------2 | v4: 𝛏 = (-1.0, 1.0) +--> ξ₁ | ----------------+--------------------- -Face numbers: | Face identifiers: - +---3---+ | f1: (v1, v2) - | | | f2: (v2, v3) - 4 2 | f3: (v3, v4) - | | | f4: (v4, v1) +Edge numbers: | Edge identifiers: + +---3---+ | e1: (v1, v2) + | | | e2: (v2, v3) + 4 2 | e3: (v3, v4) + | | | e4: (v4, v1) +---1---+ | ----------------+--------------------- +Face numbers: | Face identifiers: + +-------+ | + | | | + | 1 | | f1: (v1, v2, v3, v4) + | | | + +-------+ | +----------------+--------------------- ``` """ RefQuadrilateral