From 9c6305fcbd42a15933eaa4dd6b318075a0fd46f8 Mon Sep 17 00:00:00 2001 From: Denis Davydov Date: Wed, 11 Jul 2018 10:38:13 +0200 Subject: [PATCH] minor fix to plate_with_a_hole --- include/deal.II/grid/grid_generator.h | 17 ++++++++--------- .../grid/grid_generator_plate_with_a_hole_3.cc | 2 +- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/include/deal.II/grid/grid_generator.h b/include/deal.II/grid/grid_generator.h index 2ed123b401..0c654234c7 100644 --- a/include/deal.II/grid/grid_generator.h +++ b/include/deal.II/grid/grid_generator.h @@ -311,19 +311,19 @@ namespace GridGenerator * geometry consists of 2 regions: * The first is a square region with length @p outer_radius and a hole of radius @p inner_radius . * Cells in this regions will have TransfiniteInterpolationManifold with - * manifold id - * @p tfi_manifold_id attached to them. Additionally, the boundary faces of - * the hole will be associated with a PolarManifold (in 2D) or + * manifold id @p tfi_manifold_id attached to them. Additionally, the boundary + * faces of the hole will be associated with a PolarManifold (in 2D) or * CylindricalManifold (in 3D). The center of this - * regions can be prescribed via @p center , namely the axis of the hole will + * region can be prescribed via @p center , namely the axis of the hole will * be located at @p center . * The second region describes the remainder of the bulk material. It is * specified via padding - * parameters @p pad_bottom, @p padding_top, @p padding_left and @padding_right. + * parameters @p pad_bottom, @p padding_top, @p padding_left and @p padding_right. * All cells in this regions will have a FlatManifold attached to them. * The final width of the plate will be padding_left + 2*outer_radius + - * padding_right, where it length is padding_top + 2*outer_radius - * + padding_bottom. Three out of four paddings is allowed to be zero. + * padding_right, while its length is padding_top + + * 2*outer_radius + padding_bottom. Three out of four paddings are + * allowed to be zero. * * Here is the non-symmetric grid (after one global refinement, colored * according to manifold id) in 2D: @@ -335,8 +335,7 @@ namespace GridGenerator * @image html plate_with_a_hole_3D.png * * In 3D, triangulation will be extruded in the z-direction by the total - * height of - * @p L using @p n_slices slices (minimum is 2). + * height of @p L using @p n_slices slices (minimum is 2). * If the @p colorize flag is true, the boundary_ids of the boundary * faces are assigned, such that the lower one in the x-direction is 0, the * upper one is 1. The indicators for the surfaces in the y-direction are 2 diff --git a/tests/grid/grid_generator_plate_with_a_hole_3.cc b/tests/grid/grid_generator_plate_with_a_hole_3.cc index a4894250aa..390db00def 100644 --- a/tests/grid/grid_generator_plate_with_a_hole_3.cc +++ b/tests/grid/grid_generator_plate_with_a_hole_3.cc @@ -90,7 +90,7 @@ test() } // write in vtk for visual inspection - if (true) + if (false) { DoFHandler dof_handler(triangulation); FE_Q fe(1); -- 2.39.5