From: bangerth Date: Fri, 11 Jul 2014 02:42:30 +0000 (+0000) Subject: Group functions for more readable documentation. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd91220c02ba886e2a1d8b203a908b3407e64b71;p=dealii-svn.git Group functions for more readable documentation. git-svn-id: https://svn.dealii.org/trunk@33133 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/include/deal.II/grid/grid_tools.h b/deal.II/include/deal.II/grid/grid_tools.h index d37f30ffe4..8a6b6c6747 100644 --- a/deal.II/include/deal.II/grid/grid_tools.h +++ b/deal.II/include/deal.II/grid/grid_tools.h @@ -52,6 +52,11 @@ class SparsityPattern; */ namespace GridTools { + /** + * @name Information about meshes and cells + */ + /*@{*/ + /** * Return the diameter of a * triangulation. The diameter is @@ -81,6 +86,24 @@ namespace GridTools double volume (const Triangulation &tria, const Mapping &mapping = (StaticMappingQ1::mapping)); + /** + * Return the diamater of the smallest + * active cell of a triangulation. See + * step-24 for an example + * of use of this function. + */ + template + double + minimal_cell_diameter (const Triangulation &triangulation); + + /** + * Return the diamater of the largest + * active cell of a triangulation. + */ + template + double + maximal_cell_diameter (const Triangulation &triangulation); + /** * Given a list of vertices (typically * obtained using @@ -101,6 +124,12 @@ namespace GridTools double cell_measure (const std::vector > &all_vertices, const unsigned int (&vertex_indices)[GeometryInfo::vertices_per_cell]); + /*@}*/ + /** + * @name Functions supporting the creation of meshes + */ + /*@{*/ + /** * Remove vertices that are not * referenced by any of the @@ -168,6 +197,12 @@ namespace GridTools std::vector &considered_vertices, const double tol=1e-12); + /*@}*/ + /** + * @name Rotating, stretching and otherwise transforming meshes + */ + /*@{*/ + /** * Transform the vertices of the given * triangulation by applying the @@ -189,10 +224,12 @@ namespace GridTools * @note If you are using a parallel::distributed::Triangulation you will have * hanging nodes in your local Triangulation even if your "global" mesh has * no hanging nodes. This will cause issues with wrong positioning of hanging - * nodes in ghost cells. The vertices of all locally owned cells will be correct, + * nodes in ghost cells if you call the current functions: The vertices of + * all locally owned cells will be correct, * but the vertices of some ghost cells may not. This means that - * computations like KellyErrorEstimator may give wrong answers. A safe bet is - * to use this function prior to any refinement in parallel, if that is possible. + * computations like KellyErrorEstimator may give wrong answers. A safe approach is + * to use this function prior to any refinement in parallel, if that is possible, but + * not after you refine the mesh. * * This function is used in the * "Possibilities for extensions" section @@ -318,6 +355,12 @@ namespace GridTools Triangulation &triangulation, const bool keep_boundary=true); + /*@}*/ + /** + * @name Finding cells and vertices of a triangulation + */ + /*@{*/ + /** * Find and return the number of * the used vertex in a given @@ -494,8 +537,9 @@ namespace GridTools * not be deduced from a function call, * you will have to specify it after the * function name, as for example in - * GridTools::get_active_child_cells@ - * @> (cell). + * @code + * GridTools::get_active_child_cells > (cell) + * @endcode */ template std::vector @@ -511,6 +555,12 @@ namespace GridTools get_active_neighbors (const typename Container::active_cell_iterator &cell, std::vector &active_neighbors); + /*@}*/ + /** + * @name Partitions and subdomains of triangulations + */ + /*@{*/ + /** * Produce a sparsity pattern in which * nonzero entries indicate that two @@ -681,6 +731,12 @@ namespace GridTools count_cells_with_subdomain_association (const Triangulation &triangulation, const types::subdomain_id subdomain); + /*@}*/ + /** + * @name Comparing different meshes + */ + /*@{*/ + /** * Given two mesh containers * (i.e. objects of type @@ -780,24 +836,6 @@ namespace GridTools have_same_coarse_mesh (const Container &mesh_1, const Container &mesh_2); - /** - * Return the diamater of the smallest - * active cell of a triangulation. See - * step-24 for an example - * of use of this function. - */ - template - double - minimal_cell_diameter (const Triangulation &triangulation); - - /** - * Return the diamater of the largest - * active cell of a triangulation. - */ - template - double - maximal_cell_diameter (const Triangulation &triangulation); - /** * Given the two triangulations * specified as the first two @@ -814,7 +852,7 @@ namespace GridTools * triangulation that contains the * most refined cells from * two input triangulations that - * were derived from the same + * were derived from the same * coarse grid by adaptive refinement. * This is an operation sometimes * needed when one solves for two @@ -844,8 +882,8 @@ namespace GridTools * example in order to compose a mesh * for a complicated geometry from * meshes for simpler geometries, - * take a look at - * GridGenerator::merge_triangulations . + * then this is not the function for you. Instead, consider + * GridGenerator::merge_triangulations(). */ template void @@ -853,6 +891,12 @@ namespace GridTools const Triangulation &triangulation_2, Triangulation &result); + /*@}*/ + /** + * @name Dealing with distorted cells + */ + /*@{*/ + /** * Given a triangulation and a * list of cells whose children @@ -883,6 +927,13 @@ namespace GridTools fix_up_distorted_child_cells (const typename Triangulation::DistortedCellList &distorted_cells, Triangulation &triangulation); + /*@}*/ + /** + * @name Lower-dimensional meshes for parts of higher-dimensional meshes + */ + /*@{*/ + + #ifdef _MSC_VER // Microsoft's VC++ has a bug where it doesn't want to recognize that // an implementation (definition) of the extract_boundary_mesh function @@ -998,6 +1049,12 @@ namespace GridTools const std::set &boundary_ids = std::set()); + /*@}*/ + /** + * @name Dealing with periodic domains + */ + /*@{*/ + /** * Data type that provides all the information that is needed * to create periodicity constraints and a periodic p4est forest @@ -1172,6 +1229,12 @@ namespace GridTools std::vector > &matched_pairs, const dealii::Tensor<1,CONTAINER::space_dimension> &offset = dealii::Tensor<1,CONTAINER::space_dimension>()); + /*@}*/ + /** + * @name Exceptions + */ + /*@{*/ + /** * Exception @@ -1216,18 +1279,25 @@ namespace GridTools << "> could not be found inside any of the " << "subcells of a coarse grid cell."); + /** + * Exception + */ DeclException1 (ExcVertexNotUsed, unsigned int, << "The given vertex " << arg1 << " is not used in the given triangulation"); + /*@}*/ + } /*namespace GridTools*/ /* ----------------- Template function --------------- */ +#ifndef DOXYGEN + namespace GridTools { template @@ -1391,7 +1461,7 @@ namespace GridTools const unsigned int (&vertex_indices) [GeometryInfo<2>::vertices_per_cell]); } - +#endif DEAL_II_NAMESPACE_CLOSE