1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444
|
// ------------------------------------------------------------------------
//
// SPDX-License-Identifier: LGPL-2.1-or-later
// Copyright (C) 2023 - 2025 by the deal.II authors
//
// This file is part of the deal.II library.
//
// Part of the source code is dual licensed under Apache-2.0 WITH
// LLVM-exception OR LGPL-2.1-or-later. Detailed license information
// governing the source code and code contributions can be found in
// LICENSE.md and CONTRIBUTING.md at the top level directory of deal.II.
//
// ------------------------------------------------------------------------
#include <deal.II/base/derivative_form.h>
#include <deal.II/base/geometry_info.h>
#include <deal.II/base/mpi.h>
#include <deal.II/base/quadrature_lib.h>
#include <deal.II/distributed/tria_base.h>
#include <deal.II/fe/fe_nothing.h>
#include <deal.II/fe/fe_values.h>
#include <deal.II/fe/mapping_fe.h>
#include <deal.II/fe/mapping_q.h>
#include <deal.II/grid/grid_tools_geometry.h>
#include <deal.II/grid/tria.h>
#include <deal.II/lac/lapack_full_matrix.h>
#include <deal.II/numerics/vector_tools_integrate_difference.h>
#include <functional>
DEAL_II_NAMESPACE_OPEN
namespace GridTools
{
template <int dim, int spacedim>
double
diameter(const Triangulation<dim, spacedim> &tria)
{
// we can't deal with distributed meshes since we don't have all
// vertices locally. there is one exception, however: if the mesh has
// never been refined. the way to test this is not to ask
// tria.n_levels()==1, since this is something that can happen on one
// processor without being true on all. however, we can ask for the
// global number of active cells and use that
if constexpr (running_in_debug_mode())
{
if (const auto *p_tria = dynamic_cast<
const parallel::DistributedTriangulationBase<dim, spacedim> *>(
&tria))
Assert(p_tria->n_global_active_cells() == tria.n_cells(0),
ExcNotImplemented());
}
// the algorithm used simply traverses all cells and picks out the
// boundary vertices. it may or may not be faster to simply get all
// vectors, don't mark boundary vertices, and compute the distances
// thereof, but at least as the mesh is refined, it seems better to
// first mark boundary nodes, as marking is O(N) in the number of
// cells/vertices, while computing the maximal distance is O(N*N)
const std::vector<Point<spacedim>> &vertices = tria.get_vertices();
std::vector<bool> boundary_vertices(vertices.size(), false);
typename Triangulation<dim, spacedim>::active_cell_iterator cell =
tria.begin_active();
const typename Triangulation<dim, spacedim>::active_cell_iterator endc =
tria.end();
for (; cell != endc; ++cell)
for (const unsigned int face : cell->face_indices())
if (cell->face(face)->at_boundary())
for (unsigned int i = 0; i < cell->face(face)->n_vertices(); ++i)
boundary_vertices[cell->face(face)->vertex_index(i)] = true;
// now traverse the list of boundary vertices and check distances.
// since distances are symmetric, we only have to check one half
double max_distance_sqr = 0;
std::vector<bool>::const_iterator pi = boundary_vertices.begin();
const unsigned int N = boundary_vertices.size();
for (unsigned int i = 0; i < N; ++i, ++pi)
{
std::vector<bool>::const_iterator pj = pi + 1;
for (unsigned int j = i + 1; j < N; ++j, ++pj)
if ((*pi == true) && (*pj == true) &&
((vertices[i] - vertices[j]).norm_square() > max_distance_sqr))
max_distance_sqr = (vertices[i] - vertices[j]).norm_square();
}
return std::sqrt(max_distance_sqr);
}
template <int dim, int spacedim>
double
volume(const Triangulation<dim, spacedim> &triangulation)
{
Assert(triangulation.get_reference_cells().size() == 1,
ExcNotImplemented());
const ReferenceCell reference_cell = triangulation.get_reference_cells()[0];
return volume(
triangulation,
reference_cell.template get_default_linear_mapping<dim, spacedim>());
}
template <int dim, int spacedim>
double
volume(const Triangulation<dim, spacedim> &triangulation,
const Mapping<dim, spacedim> &mapping)
{
// get the degree of the mapping if possible. if not, just assume 1
unsigned int mapping_degree = 1;
if (const auto *p = dynamic_cast<const MappingQ<dim, spacedim> *>(&mapping))
mapping_degree = p->get_degree();
else if (const auto *p =
dynamic_cast<const MappingFE<dim, spacedim> *>(&mapping))
mapping_degree = p->get_degree();
// then initialize an appropriate quadrature formula
Assert(triangulation.get_reference_cells().size() == 1,
ExcNotImplemented());
const ReferenceCell reference_cell = triangulation.get_reference_cells()[0];
const Quadrature<dim> quadrature_formula =
reference_cell.template get_gauss_type_quadrature<dim>(mapping_degree +
1);
const unsigned int n_q_points = quadrature_formula.size();
// we really want the JxW values from the FEValues object, but it
// wants a finite element. create a cheap element as a dummy
// element
FE_Nothing<dim, spacedim> dummy_fe(reference_cell);
FEValues<dim, spacedim> fe_values(mapping,
dummy_fe,
quadrature_formula,
update_JxW_values);
double local_volume = 0;
// compute the integral quantities by quadrature
for (const auto &cell : triangulation.active_cell_iterators())
if (cell->is_locally_owned())
{
fe_values.reinit(cell);
for (unsigned int q = 0; q < n_q_points; ++q)
local_volume += fe_values.JxW(q);
}
const double global_volume =
Utilities::MPI::sum(local_volume, triangulation.get_mpi_communicator());
return global_volume;
}
template <int dim, int spacedim>
std::pair<unsigned int, double>
get_longest_direction(
typename Triangulation<dim, spacedim>::active_cell_iterator cell)
{
double max_ratio = 1;
unsigned int index = 0;
for (unsigned int i = 0; i < dim; ++i)
for (unsigned int j = i + 1; j < dim; ++j)
{
unsigned int ax = i % dim;
unsigned int next_ax = j % dim;
double ratio =
cell->extent_in_direction(ax) / cell->extent_in_direction(next_ax);
if (ratio > max_ratio)
{
max_ratio = ratio;
index = ax;
}
else if (1.0 / ratio > max_ratio)
{
max_ratio = 1.0 / ratio;
index = next_ax;
}
}
return std::make_pair(index, max_ratio);
}
namespace
{
/**
* The algorithm to compute the affine approximation to a cell finds an
* affine map A x_hat + b from the reference cell to the real space.
*
* Some details about how we compute the least square plane. We look
* for a spacedim x (dim + 1) matrix X such that X * M = Y where M is
* a (dim+1) x n_vertices matrix and Y a spacedim x n_vertices. And:
* The i-th column of M is unit_vertex[i] and the last row all
* 1's. The i-th column of Y is real_vertex[i]. If we split X=[A|b],
* the least square approx is A x_hat+b Classically X = Y * (M^t (M
* M^t)^{-1}) Let K = M^t * (M M^t)^{-1} = [KA Kb] this can be
* precomputed, and that is exactly what we do. Finally A = Y*KA and
* b = Y*Kb.
*/
template <int dim>
struct TransformR2UAffine
{
static const double KA[GeometryInfo<dim>::vertices_per_cell][dim];
static const double Kb[GeometryInfo<dim>::vertices_per_cell];
};
/*
Octave code:
M=[0 1; 1 1];
K1 = transpose(M) * inverse (M*transpose(M));
printf ("{%f, %f},\n", K1' );
*/
template <>
const double TransformR2UAffine<1>::KA[GeometryInfo<1>::vertices_per_cell]
[1] = {{-1.000000}, {1.000000}};
template <>
const double TransformR2UAffine<1>::Kb[GeometryInfo<1>::vertices_per_cell] =
{1.000000, 0.000000};
/*
Octave code:
M=[0 1 0 1;0 0 1 1;1 1 1 1];
K2 = transpose(M) * inverse (M*transpose(M));
printf ("{%f, %f, %f},\n", K2' );
*/
template <>
const double TransformR2UAffine<2>::KA[GeometryInfo<2>::vertices_per_cell]
[2] = {{-0.500000, -0.500000},
{0.500000, -0.500000},
{-0.500000, 0.500000},
{0.500000, 0.500000}};
/*
Octave code:
M=[0 1 0 1 0 1 0 1;0 0 1 1 0 0 1 1; 0 0 0 0 1 1 1 1; 1 1 1 1 1 1 1 1];
K3 = transpose(M) * inverse (M*transpose(M))
printf ("{%f, %f, %f, %f},\n", K3' );
*/
template <>
const double TransformR2UAffine<2>::Kb[GeometryInfo<2>::vertices_per_cell] =
{0.750000, 0.250000, 0.250000, -0.250000};
template <>
const double TransformR2UAffine<3>::KA[GeometryInfo<3>::vertices_per_cell]
[3] = {
{-0.250000, -0.250000, -0.250000},
{0.250000, -0.250000, -0.250000},
{-0.250000, 0.250000, -0.250000},
{0.250000, 0.250000, -0.250000},
{-0.250000, -0.250000, 0.250000},
{0.250000, -0.250000, 0.250000},
{-0.250000, 0.250000, 0.250000},
{0.250000, 0.250000, 0.250000}
};
template <>
const double TransformR2UAffine<3>::Kb[GeometryInfo<3>::vertices_per_cell] =
{0.500000,
0.250000,
0.250000,
0.000000,
0.250000,
0.000000,
0.000000,
-0.250000};
} // namespace
template <int dim, int spacedim>
std::pair<DerivativeForm<1, dim, spacedim>, Tensor<1, spacedim>>
affine_cell_approximation(const ArrayView<const Point<spacedim>> &vertices)
{
AssertDimension(vertices.size(), GeometryInfo<dim>::vertices_per_cell);
// A = vertex * KA
DerivativeForm<1, dim, spacedim> A;
for (unsigned int d = 0; d < spacedim; ++d)
for (unsigned int v = 0; v < GeometryInfo<dim>::vertices_per_cell; ++v)
for (unsigned int e = 0; e < dim; ++e)
A[d][e] += vertices[v][d] * TransformR2UAffine<dim>::KA[v][e];
// b = vertex * Kb
Tensor<1, spacedim> b;
for (unsigned int v = 0; v < GeometryInfo<dim>::vertices_per_cell; ++v)
b += vertices[v] * TransformR2UAffine<dim>::Kb[v];
return std::make_pair(A, b);
}
template <int dim>
Vector<double>
compute_aspect_ratio_of_cells(const Mapping<dim> &mapping,
const Triangulation<dim> &triangulation,
const Quadrature<dim> &quadrature)
{
FE_Nothing<dim> fe;
FEValues<dim> fe_values(mapping, fe, quadrature, update_jacobians);
Vector<double> aspect_ratio_vector(triangulation.n_active_cells());
// loop over cells of processor
for (const auto &cell : triangulation.active_cell_iterators())
{
if (cell->is_locally_owned())
{
double aspect_ratio_cell = 0.0;
fe_values.reinit(cell);
// loop over quadrature points
for (unsigned int q = 0; q < quadrature.size(); ++q)
{
const Tensor<2, dim, double> jacobian =
Tensor<2, dim, double>(fe_values.jacobian(q));
// We intentionally do not want to throw an exception in case of
// inverted elements since this is not the task of this
// function. Instead, inf is written into the vector in case of
// inverted elements.
if (determinant(jacobian) <= 0)
{
aspect_ratio_cell = std::numeric_limits<double>::infinity();
}
else
{
LAPACKFullMatrix<double> J = LAPACKFullMatrix<double>(dim);
for (unsigned int i = 0; i < dim; ++i)
for (unsigned int j = 0; j < dim; ++j)
J(i, j) = jacobian[i][j];
J.compute_svd();
const double max_sv = J.singular_value(0);
const double min_sv = J.singular_value(dim - 1);
const double ar = max_sv / min_sv;
// Take the max between the previous and the current
// aspect ratio value; if we had previously encountered
// an inverted cell, we will have placed an infinity
// in the aspect_ratio_cell variable, and that value
// will survive this max operation.
aspect_ratio_cell = std::max(aspect_ratio_cell, ar);
}
}
// fill vector
aspect_ratio_vector(cell->active_cell_index()) = aspect_ratio_cell;
}
}
return aspect_ratio_vector;
}
template <int dim>
double
compute_maximum_aspect_ratio(const Mapping<dim> &mapping,
const Triangulation<dim> &triangulation,
const Quadrature<dim> &quadrature)
{
Vector<double> aspect_ratio_vector =
compute_aspect_ratio_of_cells(mapping, triangulation, quadrature);
return VectorTools::compute_global_error(triangulation,
aspect_ratio_vector,
VectorTools::Linfty_norm);
}
template <int dim, int spacedim>
BoundingBox<spacedim>
compute_bounding_box(const Triangulation<dim, spacedim> &tria)
{
using iterator =
typename Triangulation<dim, spacedim>::active_cell_iterator;
const auto predicate = [](const iterator &) { return true; };
return compute_bounding_box(
tria, std::function<bool(const iterator &)>(predicate));
}
template <int dim, int spacedim>
double
minimal_cell_diameter(const Triangulation<dim, spacedim> &triangulation,
const Mapping<dim, spacedim> &mapping)
{
double min_diameter = std::numeric_limits<double>::max();
for (const auto &cell : triangulation.active_cell_iterators())
if (!cell->is_artificial())
min_diameter = std::min(min_diameter, cell->diameter(mapping));
const double global_min_diameter =
Utilities::MPI::min(min_diameter, triangulation.get_mpi_communicator());
return global_min_diameter;
}
template <int dim, int spacedim>
double
maximal_cell_diameter(const Triangulation<dim, spacedim> &triangulation,
const Mapping<dim, spacedim> &mapping)
{
double max_diameter = 0.;
for (const auto &cell : triangulation.active_cell_iterators())
if (!cell->is_artificial())
max_diameter = std::max(max_diameter, cell->diameter(mapping));
const double global_max_diameter =
Utilities::MPI::max(max_diameter, triangulation.get_mpi_communicator());
return global_max_diameter;
}
} /* namespace GridTools */
// explicit instantiations
#include "grid/grid_tools_geometry.inst"
DEAL_II_NAMESPACE_CLOSE
|