From: Martin Kronbichler Date: Tue, 15 Dec 2020 14:14:07 +0000 (+0100) Subject: Fix some typos regarding 'hexahedra' X-Git-Tag: v9.3.0-rc1~752^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F11377%2Fhead;p=dealii.git Fix some typos regarding 'hexahedra' --- diff --git a/doc/doxygen/headers/simplex.h b/doc/doxygen/headers/simplex.h index eb70be846d..b6a7be3b73 100644 --- a/doc/doxygen/headers/simplex.h +++ b/doc/doxygen/headers/simplex.h @@ -43,7 +43,7 @@ * * * - * In 3D, tetrahedrons, pyramids, wedges, and hexahedrons are available: + * In 3D, tetrahedra, pyramids, wedges, and hexahedra are available: * *
*
diff --git a/doc/news/changes/minor/20201123DejeneMunch b/doc/news/changes/minor/20201123DejeneMunch index 1e425b25cf..792c0068bf 100644 --- a/doc/news/changes/minor/20201123DejeneMunch +++ b/doc/news/changes/minor/20201123DejeneMunch @@ -1,5 +1,5 @@ New: The function GridGenerator::convert_hypercube_to_simplex_mesh allows to -convert a given triangulation based on quadrilaterals (2D) or hexaedra (3D) +convert a given triangulation based on quadrilaterals (2D) or hexahedra (3D) to a triangulation based on simplices or tetraedra, respectively. Thereby, material_IDs and boundary_IDs are inherited from the given triangulation.
diff --git a/include/deal.II/grid/connectivity.h b/include/deal.II/grid/connectivity.h index 3dc34f4766..47b5912f63 100644 --- a/include/deal.II/grid/connectivity.h +++ b/include/deal.II/grid/connectivity.h @@ -636,7 +636,7 @@ namespace internal /** - * Implementation for hexahedrons. + * Implementation for hexahedra. */ struct CellTypeHex : public CellTypeBase { diff --git a/include/deal.II/grid/grid_generator.h b/include/deal.II/grid/grid_generator.h index ca91dd04bf..44ee503fd7 100644 --- a/include/deal.II/grid/grid_generator.h +++ b/include/deal.II/grid/grid_generator.h @@ -1909,7 +1909,7 @@ namespace GridGenerator /** * Convert a triangulation consisting only of hypercube cells - * (quadrilaterals, hexahedrons) to a triangulation only consisting of + * (quadrilaterals, hexahedra) to a triangulation only consisting of * simplices (triangles, tetrahedra). * * As an example, the following image shows how a set of three hexahedra diff --git a/include/deal.II/grid/tria.h b/include/deal.II/grid/tria.h index b4c8ff6092..bca79fbf5f 100644 --- a/include/deal.II/grid/tria.h +++ b/include/deal.II/grid/tria.h @@ -3369,7 +3369,7 @@ public: /** * Indicate if the triangulation only consists of hypercube-like cells, i.e., - * lines, quadrilaterals, or hexahedrons. + * lines, quadrilaterals, or hexahedra. */ bool all_reference_cell_types_are_hyper_cube() const;