From 25f55b7c80f29ac316c33f5814bf44e176f317d5 Mon Sep 17 00:00:00 2001 From: Kai Wendel <kai.wendel@iws.uni-stuttgart.de> Date: Thu, 11 Jan 2024 17:33:52 +0000 Subject: [PATCH] [examples] correct typo in documentation --- examples/diffusion/doc/model.md | 2 +- examples/diffusion/model.hh | 2 +- examples/freeflowchannel/README.md | 2 +- examples/freeflowchannel/problem.hh | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/examples/diffusion/doc/model.md b/examples/diffusion/doc/model.md index 29aef2dd63..428e248bb1 100644 --- a/examples/diffusion/doc/model.md +++ b/examples/diffusion/doc/model.md @@ -56,7 +56,7 @@ struct DiffusionModel {}; The local residual assembles the contribution to the residual for all degrees of freedom associated with an element. Here, we use the Box method which is based on $P_1$ basis functions (piece-wise linears) -and the degrees of freedom are on the nodes. Each node is associate with +and the degrees of freedom are on the nodes. Each node is associated with exactly one sub control volume (`scv`) per element and several ($2$ in $\mathbb{R}^2$) sub control volume faces (`scvf`). In the local residual, we can implement the contribution for one `scv` (storage and source terms) or one `scvf` (flux terms). diff --git a/examples/diffusion/model.hh b/examples/diffusion/model.hh index fa9c0ff4b8..fa7d96219f 100644 --- a/examples/diffusion/model.hh +++ b/examples/diffusion/model.hh @@ -46,7 +46,7 @@ struct DiffusionModel {}; // The local residual assembles the contribution to the residual for // all degrees of freedom associated with an element. Here, we use the // Box method which is based on $P_1$ basis functions (piece-wise linears) -// and the degrees of freedom are on the nodes. Each node is associate with +// and the degrees of freedom are on the nodes. Each node is associated with // exactly one sub control volume (`scv`) per element and several ($2$ in $\mathbb{R}^2$) // sub control volume faces (`scvf`). In the local residual, we can implement the // contribution for one `scv` (storage and source terms) or one `scvf` (flux terms). diff --git a/examples/freeflowchannel/README.md b/examples/freeflowchannel/README.md index bbdcd71dab..db1040f77f 100644 --- a/examples/freeflowchannel/README.md +++ b/examples/freeflowchannel/README.md @@ -258,7 +258,7 @@ public: #### Boundary conditions With the following function we define the __type of boundary conditions__ depending on the location. Three types of boundary conditions can be specified: Dirichlet, Neumann or outflow boundary conditions. On -Dirichlet boundaries, the values of the primary variables need to be fixed. On a Neumann boundaries, +Dirichlet boundaries, the values of the primary variables need to be fixed. On Neumann boundaries, values for derivatives need to be fixed. Outflow conditions set a gradient of zero in normal direction towards the boundary for the respective primary variables (excluding pressure). When Dirichlet conditions are set for the pressure, the velocity gradient diff --git a/examples/freeflowchannel/problem.hh b/examples/freeflowchannel/problem.hh index f651e5804d..59b5cf27cb 100644 --- a/examples/freeflowchannel/problem.hh +++ b/examples/freeflowchannel/problem.hh @@ -60,7 +60,7 @@ public: // #### Boundary conditions // With the following function we define the __type of boundary conditions__ depending on the location. // Three types of boundary conditions can be specified: Dirichlet, Neumann or outflow boundary conditions. On - // Dirichlet boundaries, the values of the primary variables need to be fixed. On a Neumann boundaries, + // Dirichlet boundaries, the values of the primary variables need to be fixed. On Neumann boundaries, // values for derivatives need to be fixed. Outflow conditions set a gradient of zero in normal direction towards the boundary // for the respective primary variables (excluding pressure). // When Dirichlet conditions are set for the pressure, the velocity gradient -- GitLab