Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Docs rendering: Avoid Markdown hyperlink #1814

Merged
merged 3 commits into from
Jan 25, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions docs/src/meshes/p4est_mesh.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ This heading is used to indicate to the mesh constructor which of the above mapp
create a curvilinear mesh.
If the Abaqus file header is **not** present then the `P4estMesh` is created with the first strategy above.

#### <a name="nodes"></a>List of corner nodes
#### List of corner nodes
DanielDoehring marked this conversation as resolved.
Show resolved Hide resolved

Next, prefaced with `*NODE`, comes a list of the physical `(x,y,z)` coordinates of all the corners.
The first integer in the list of the corners provides its id number.
Expand All @@ -71,7 +71,7 @@ Thus, for the two-dimensional example mesh this block of corner information is
7, 3.0, -1.0, 0.0
```

#### <a name="elements"></a>List of elements
#### List of elements
DanielDoehring marked this conversation as resolved.
Show resolved Hide resolved

The element connectivity is given after the list of corners. The header for this information block is
```
Expand Down Expand Up @@ -237,7 +237,7 @@ For completeness, we provide the entire Abaqus mesh file for the example mesh in
As an alternative to an Abaqus mesh generated by `HOHQMesh`, `.inp` files with boundary information encoded as nodesets `*NSET,NSET=` can be used to construct a `p4est` mesh.
This is especially useful for usage of existing meshes (consisting of bilinear elements) which could stem from the popular [`gmsh`](https://gmsh.info/) meshing software.

In addition to the list of [nodes](#nodes) and [elements](#elements) given above, there are nodesets of the form
In addition to the list of nodes and elements given above, there are nodesets of the form
DanielDoehring marked this conversation as resolved.
Show resolved Hide resolved
```
*NSET,NSET=PhysicalLine1
1, 4, 52, 53, 54, 55, 56, 57, 58,
Expand Down
Loading