]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
2 years agoDoxygen: Ensure that opening and closing glossary quotes are on the same line 13772/head
Matthias Maier [Sat, 21 May 2022 15:55:12 +0000 (10:55 -0500)]
Doxygen: Ensure that opening and closing glossary quotes are on the same line

2 years agoMerge pull request #13756 from kronbichler/add_instantiation
David Wells [Wed, 18 May 2022 14:22:34 +0000 (10:22 -0400)]
Merge pull request #13756 from kronbichler/add_instantiation

MatrixFree: Add instantiation for ConstraintValues::insert_entries

2 years agoMatrixFree: Add instantiation for ConstraintValues::insert_entries 13756/head
Martin Kronbichler [Wed, 18 May 2022 08:09:47 +0000 (10:09 +0200)]
MatrixFree: Add instantiation for ConstraintValues::insert_entries

2 years agoMerge pull request #13750 from marcfehling/fixtest-petsc
Marc Fehling [Wed, 18 May 2022 00:18:38 +0000 (18:18 -0600)]
Merge pull request #13750 from marcfehling/fixtest-petsc

Update petsc test output.

2 years agoUpdate petsc test output. 13750/head
Marc Fehling [Tue, 17 May 2022 20:35:29 +0000 (14:35 -0600)]
Update petsc test output.

2 years agoMerge pull request #13748 from simonsticko/assert_mapping_cartesian
Martin Kronbichler [Tue, 17 May 2022 10:36:56 +0000 (12:36 +0200)]
Merge pull request #13748 from simonsticko/assert_mapping_cartesian

Assert that the incoming cell is Cartesian in MappingCartesian

2 years agoMerge pull request #13749 from simonsticko/rename_ExcReclassifyNotCalled
Martin Kronbichler [Tue, 17 May 2022 10:36:05 +0000 (12:36 +0200)]
Merge pull request #13749 from simonsticko/rename_ExcReclassifyNotCalled

Rename an exception

2 years agoMerge pull request #13747 from tamiko/fix_step_75_emplace
Peter Munch [Tue, 17 May 2022 08:17:46 +0000 (10:17 +0200)]
Merge pull request #13747 from tamiko/fix_step_75_emplace

Step-75: use well-formed deleter

2 years agoAssert that the incoming cell is Cartesian in MappingCartesian 13748/head
Simon Sticko [Tue, 17 May 2022 06:41:09 +0000 (08:41 +0200)]
Assert that the incoming cell is Cartesian in MappingCartesian

2 years agoRename an exception 13749/head
Simon Sticko [Tue, 17 May 2022 07:00:54 +0000 (09:00 +0200)]
Rename an exception

To be consistent with the names of the other exceptions.

2 years agoStep-75: use well-formed deleter 13747/head
Matthias Maier [Tue, 17 May 2022 04:29:57 +0000 (23:29 -0500)]
Step-75: use well-formed deleter

LLVM/Clang's libc++ library version 13/14 got stricter by checking
requirements of the deleter, in particular, according to [1] a deleter
must pass the requirement `__shared_ptr_deleter_ctor_reqs` which is
defined as follows:
```
template <class _Dp, class _Pt, class = decltype(declval<_Dp>()(declval<_Pt>()))>
static true_type __well_formed_deleter_test(int);

template <class, class>
static false_type __well_formed_deleter_test(...);

template <class _Dp, class _Pt>
struct __well_formed_deleter : decltype(__well_formed_deleter_test<_Dp, _Pt>(0)) {};

template<class _Dp, class _Tp, class _Yp>
struct __shared_ptr_deleter_ctor_reqs
{
    static const bool value = __compatible_with<_Tp, _Yp>::value &&
                              is_move_constructible<_Dp>::value &&
                              __well_formed_deleter<_Dp, _Tp*>::value;
};
```
Unfortunately, our construct
```
coarse_grid_triangulations.emplace_back(
  const_cast<Triangulation<dim> *>(&(dof_handler.get_triangulation())),
  [](auto &) {});
```
does not pass this test. The issue is that the deleter takes a pointer,
not a reference which, so the lambda `[](auto &){}` does not pass above
`__shared_ptr_deleter_ctor_reqs`.

While at it, remove the const cast: `coarse_grid_triangulations` is
declared as a vector holding a `shared_ptr<const Triangulation<dim>>`,
thus we should simply take the address and not convert to a non-const
object.

[1] https://github.com/llvm/llvm-project/blob/main/libcxx/include/__memory/shared_ptr.h

2 years agoMerge pull request #13744 from tamiko/transfinite_fix_codim_one
Martin Kronbichler [Tue, 17 May 2022 05:47:20 +0000 (07:47 +0200)]
Merge pull request #13744 from tamiko/transfinite_fix_codim_one

TransfiniteInterpolationManifold: fix codimension one case

2 years agoMerge pull request #13746 from tamiko/fix_typo
Marc Fehling [Tue, 17 May 2022 04:38:27 +0000 (22:38 -0600)]
Merge pull request #13746 from tamiko/fix_typo

base/tensor.h: Fix a typo

2 years agobase/tensor.h: Fix a typo 13746/head
Matthias Maier [Tue, 17 May 2022 02:21:36 +0000 (21:21 -0500)]
base/tensor.h: Fix a typo

2 years agoTransfiniteInterpolationManifold: add a test 13744/head
Matthias Maier [Mon, 16 May 2022 17:51:49 +0000 (12:51 -0500)]
TransfiniteInterpolationManifold: add a test

2 years agoMerge pull request #13742 from bangerth/typo
Daniel Arndt [Mon, 16 May 2022 18:09:17 +0000 (14:09 -0400)]
Merge pull request #13742 from bangerth/typo

2 years agoTransfiniteInterpolationManifold: fix codimension one case
Matthias Maier [Mon, 16 May 2022 17:36:16 +0000 (12:36 -0500)]
TransfiniteInterpolationManifold: fix codimension one case

The codimension one case currently fails with an assertion:
```
An error occurred in line <290> of file <source/grid/grid_tools.cc> in function
    std::pair<DerivativeForm<1, dim, spacedim>, Tensor<1, spacedim>> dealii::GridTools::affine_cell_approximation(const ArrayView<const Point<spacedim>> &) [dim = 2, spacedim = 3]
The violated condition was:
    ::dealii::deal_II_exceptions::internals::compare_for_equality(vertices.size(), GeometryInfo<dim>::vertices_per_cell)
Additional information:
    Dimension 9 not equal to 4.
```
This is triggered because we take a compatibility branch in case of
`dim < spacedim` (in `include/deal.II/fe/mapping_q_internal.h`):
```
908         if (real_support_points.size() ==
909               GeometryInfo<dim>::vertices_per_cell ||
910             dim < spacedim)
911           {
```
but still initialize the vector `unit_points` by a subdivided quadrature
(which is needed for the default quadratic approximation; in
`source/grid/manifold_lib.cc`):
```
1686   std::vector<Point<dim>> unit_points =
1687     QIterated<dim>(QTrapez<1>(), 2).get_points();
1688   std::vector<Point<spacedim>> real_points(unit_points.size());
```

Fix this by simply initializing `unit_points` with the right number of
interpolation points for the `dim < spacedim` variant.

2 years agoFix a typo. 13742/head
Wolfgang Bangerth [Mon, 16 May 2022 16:27:48 +0000 (10:27 -0600)]
Fix a typo.

2 years agoMerge pull request #13730 from kronbichler/add_test_output_variant
Peter Munch [Mon, 16 May 2022 09:47:34 +0000 (11:47 +0200)]
Merge pull request #13730 from kronbichler/add_test_output_variant

Add another variant for multigrid test

2 years agoMerge pull request #13717 from luca-heltai/cgal-compute_boolean_operation
Peter Munch [Mon, 16 May 2022 09:08:53 +0000 (11:08 +0200)]
Merge pull request #13717 from luca-heltai/cgal-compute_boolean_operation

Corefine and compute boolean operations in CGAL

2 years agoMerge pull request #13739 from marcfehling/fixtest_sharedtria_refine
David Wells [Mon, 16 May 2022 02:18:59 +0000 (22:18 -0400)]
Merge pull request #13739 from marcfehling/fixtest_sharedtria_refine

Added missing headers to failing test.

2 years agoAdded missing headers to failing test. 13739/head
Marc Fehling [Sun, 15 May 2022 22:56:39 +0000 (16:56 -0600)]
Added missing headers to failing test.

2 years agoFixed documenation. 13717/head
Luca Heltai [Sun, 15 May 2022 20:11:25 +0000 (23:11 +0300)]
Fixed documenation.

2 years agoMerge pull request #13737 from peterrum/ldv_fix_size
Peter Munch [Sun, 15 May 2022 19:14:17 +0000 (21:14 +0200)]
Merge pull request #13737 from peterrum/ldv_fix_size

LA:d:V: fix size in the case of shared memory

2 years agoMerge pull request #13738 from gfcas/typo
Luca Heltai [Sun, 15 May 2022 18:49:28 +0000 (21:49 +0300)]
Merge pull request #13738 from gfcas/typo

Fix typo w_cycle

2 years agoMerge pull request #13736 from drwells/gcc-12-warnings
Martin Kronbichler [Sun, 15 May 2022 14:03:47 +0000 (16:03 +0200)]
Merge pull request #13736 from drwells/gcc-12-warnings

Fix some GCC-12 warnings.

2 years agoMerge pull request #13732 from tamiko/remove_as_needed
Timo Heister [Sun, 15 May 2022 12:02:42 +0000 (08:02 -0400)]
Merge pull request #13732 from tamiko/remove_as_needed

CMake: remove -Wl,--as-needed flag setup

2 years agoFix typo w_cycle 13738/head
Fabian Castelli [Sun, 15 May 2022 10:59:37 +0000 (12:59 +0200)]
Fix typo w_cycle

2 years agoLA:d:V: fix size in the case of shared memory 13737/head
Peter Munch [Sun, 15 May 2022 10:13:30 +0000 (12:13 +0200)]
LA:d:V: fix size in the case of shared memory

2 years agoAdd boolean operations between surface_meshes
Marco Feder [Tue, 10 May 2022 16:50:04 +0000 (18:50 +0200)]
Add boolean operations between surface_meshes

2 years agoSimplify some code. 13736/head
David Wells [Sat, 14 May 2022 18:12:24 +0000 (14:12 -0400)]
Simplify some code.

2 years agoFix some GCC-12 warnings.
David Wells [Sat, 14 May 2022 18:12:09 +0000 (14:12 -0400)]
Fix some GCC-12 warnings.

2 years agoMerge pull request #13712 from marcfehling/security
Luca Heltai [Sat, 14 May 2022 12:48:14 +0000 (15:48 +0300)]
Merge pull request #13712 from marcfehling/security

Restrict permissions for GITHUB_TOKEN.

2 years agoMerge pull request #13705 from luca-heltai/cgal-surface_mesh-to-coarse_mesh
Luca Heltai [Sat, 14 May 2022 09:50:41 +0000 (12:50 +0300)]
Merge pull request #13705 from luca-heltai/cgal-surface_mesh-to-coarse_mesh

Create coarse mesh out of a CGAL::Surface_mesh

2 years agoMerge pull request #13733 from bangerth/ca-types-4
Peter Munch [Sat, 14 May 2022 07:17:57 +0000 (09:17 +0200)]
Merge pull request #13733 from bangerth/ca-types-4

Avoid double packing/unpacking for CA algorithms.

2 years agoMerge pull request #13731 from bangerth/ca-types-3
Peter Munch [Sat, 14 May 2022 07:16:10 +0000 (09:16 +0200)]
Merge pull request #13731 from bangerth/ca-types-3

Simplify the type used by ConsensusAlgorithm in compute_n_point_to_point_communications().

2 years agoMerge pull request #13729 from simonsticko/quadrature_initialize
Peter Munch [Sat, 14 May 2022 07:15:28 +0000 (09:15 +0200)]
Merge pull request #13729 from simonsticko/quadrature_initialize

Set is_tensor_product_flag in Quadrature::initialize(..)

2 years agoAvoid double packing/unpacking for CA algorithms. 13733/head
Wolfgang Bangerth [Fri, 13 May 2022 22:31:04 +0000 (16:31 -0600)]
Avoid double packing/unpacking for CA algorithms.

2 years agoCMake: remove -Wl,--as-needed flag setup 13732/head
Matthias Maier [Fri, 13 May 2022 20:57:15 +0000 (15:57 -0500)]
CMake: remove -Wl,--as-needed flag setup

The issue with the current handling of the --Wl,--as-needed flag is the
fact that we set it internally but later on filter it (unconditionally)
for user projects.

This has the issue that it is currently not possible to set
--Wl,--as-needed by hand when needed.

Thus, let us simply remove the setup and the workarounds.

2 years agoSimplify the type used by ConsensusAlgorithm in compute_n_point_to_point_communicatio... 13731/head
Wolfgang Bangerth [Fri, 13 May 2022 20:55:11 +0000 (14:55 -0600)]
Simplify the type used by ConsensusAlgorithm in compute_n_point_to_point_communications().

2 years agoMerge pull request #13722 from bangerth/ca-type-2
Daniel Arndt [Fri, 13 May 2022 11:33:43 +0000 (13:33 +0200)]
Merge pull request #13722 from bangerth/ca-type-2

2 years agoMerge pull request #13728 from sebproell/mf-reinit-empty-procs
Daniel Arndt [Fri, 13 May 2022 10:22:13 +0000 (12:22 +0200)]
Merge pull request #13728 from sebproell/mf-reinit-empty-procs

2 years agoAdd another variant for multigrid test 13730/head
Martin Kronbichler [Fri, 13 May 2022 10:18:01 +0000 (12:18 +0200)]
Add another variant for multigrid test

2 years agoSet is_tensor_product_flag in Quadrature::initialize(..) 13729/head
Simon Sticko [Fri, 13 May 2022 09:29:11 +0000 (11:29 +0200)]
Set is_tensor_product_flag in Quadrature::initialize(..)

If you first create a quadrature which is a tensor product and then
call initialize with points and weights which does not correspond
to a tensor product, you can make is_tensor_product_flag have the
wrong value. Set the flag in intialize(..) to avoid this.

2 years agoNew test for MatrixFree::reinit with empty procs 13728/head
Sebastian Proell [Thu, 12 May 2022 08:44:41 +0000 (10:44 +0200)]
New test for MatrixFree::reinit with empty procs

2 years agoMerge pull request #13726 from tamiko/silence_warning
Luca Heltai [Fri, 13 May 2022 06:12:51 +0000 (09:12 +0300)]
Merge pull request #13726 from tamiko/silence_warning

CMake: Do not warn about not finding CGAL

2 years agoCMake: Do not warn about not finding CGAL 13726/head
Matthias Maier [Thu, 12 May 2022 22:40:02 +0000 (17:40 -0500)]
CMake: Do not warn about not finding CGAL

Newer CMake versions (encountered with CMake 3.20) seem to warn very
verbosely about not finding a package. Let's add the "QUIET" keyword to
the find_package() call to silence the warning.

2 years agoMerge pull request #13723 from kronbichler/fix_cg_interleave
Matthias Maier [Thu, 12 May 2022 22:01:07 +0000 (17:01 -0500)]
Merge pull request #13723 from kronbichler/fix_cg_interleave

Fix three bugs in interleaved CG method

2 years agoMerge pull request #13724 from kronbichler/simplify_chebyshev
Matthias Maier [Thu, 12 May 2022 21:59:40 +0000 (16:59 -0500)]
Merge pull request #13724 from kronbichler/simplify_chebyshev

Choose common SFINAE detection path for PreconditionChebyshev

2 years agoMerge pull request #13725 from peterrum/mf_fe_nothing_fix
Peter Munch [Thu, 12 May 2022 21:15:02 +0000 (23:15 +0200)]
Merge pull request #13725 from peterrum/mf_fe_nothing_fix

MF: fix if all cells of a process are FE_Nothing

2 years agoMF: fix if all cells of a process are FE_Nothing 13725/head
Peter Munch [Thu, 12 May 2022 19:12:21 +0000 (21:12 +0200)]
MF: fix if all cells of a process are FE_Nothing

2 years agoChoose common SFINAE detection path for PreconditionChebyshev 13724/head
Martin Kronbichler [Thu, 12 May 2022 16:12:45 +0000 (18:12 +0200)]
Choose common SFINAE detection path for PreconditionChebyshev

2 years agoFix two bugs in interleaved CG method 13723/head
Martin Kronbichler [Thu, 12 May 2022 13:40:54 +0000 (15:40 +0200)]
Fix two bugs in interleaved CG method

2 years agoDo not compress data. 13722/head
Wolfgang Bangerth [Thu, 12 May 2022 16:02:58 +0000 (10:02 -0600)]
Do not compress data.

2 years agoAdd a necessary include.
Wolfgang Bangerth [Thu, 12 May 2022 03:04:04 +0000 (21:04 -0600)]
Add a necessary include.

2 years agoReplace std::vector<RequestType> by RequestType.
Wolfgang Bangerth [Wed, 11 May 2022 19:03:49 +0000 (13:03 -0600)]
Replace std::vector<RequestType> by RequestType.

Same for AnswerType.

2 years agoMerge pull request #13720 from bangerth/ca-type
Peter Munch [Wed, 11 May 2022 20:00:19 +0000 (22:00 +0200)]
Merge pull request #13720 from bangerth/ca-type

Rename the template type arguments of the consensus algorithms.

2 years agoMerge pull request #13719 from drwells/cleanup-duplicated-vertices
Wolfgang Bangerth [Wed, 11 May 2022 18:52:17 +0000 (12:52 -0600)]
Merge pull request #13719 from drwells/cleanup-duplicated-vertices

Clean up delete_duplicated_vertices() a little.

2 years agoConvert CGAL::Surface_mesh to coarse mesh 13705/head
Marco Feder [Mon, 9 May 2022 22:04:34 +0000 (00:04 +0200)]
Convert CGAL::Surface_mesh to coarse mesh

2 years agoRename the template type arguments of the consensus algorithms. 13720/head
Wolfgang Bangerth [Wed, 11 May 2022 16:02:47 +0000 (10:02 -0600)]
Rename the template type arguments of the consensus algorithms.

2 years agoClean up delete_duplicated_vertices() a little. 13719/head
David Wells [Wed, 11 May 2022 14:46:57 +0000 (10:46 -0400)]
Clean up delete_duplicated_vertices() a little.

2 years agoMerge pull request #13718 from bergbauer/fix-master
Wolfgang Bangerth [Wed, 11 May 2022 16:07:18 +0000 (10:07 -0600)]
Merge pull request #13718 from bergbauer/fix-master

Fix master face_no

2 years agoMerge pull request #13698 from kronbichler/cg_interleave
Peter Munch [Wed, 11 May 2022 15:04:50 +0000 (17:04 +0200)]
Merge pull request #13698 from kronbichler/cg_interleave

Add a data-locality-optimized iteration scheme to SolverCG

2 years agoFix master face_no 13718/head
Maximilian Bergbauer [Wed, 11 May 2022 14:29:21 +0000 (16:29 +0200)]
Fix master face_no

2 years agoMerge pull request #13063 from peterrum/ecl_unstructured_evaluate
Martin Kronbichler [Wed, 11 May 2022 14:21:06 +0000 (16:21 +0200)]
Merge pull request #13063 from peterrum/ecl_unstructured_evaluate

Implement FEFaceEvaluation::evaluate() for ECL/unstructured meshes

2 years agoMerge pull request #13590 from bergbauer/gradient_hessian_ellipsoid
Martin Kronbichler [Wed, 11 May 2022 14:20:31 +0000 (16:20 +0200)]
Merge pull request #13590 from bergbauer/gradient_hessian_ellipsoid

Add gradient to SignedDistance::Ellipsoid

2 years agoMerge pull request #13637 from peterrum/MGTransferBlockGlobalCoarsening
Martin Kronbichler [Wed, 11 May 2022 14:18:31 +0000 (16:18 +0200)]
Merge pull request #13637 from peterrum/MGTransferBlockGlobalCoarsening

Introduce MGTransferBlockGlobalCoarsening

2 years agoMerge pull request #13694 from peterrum/do_interpolate_boundary_values
Martin Kronbichler [Wed, 11 May 2022 14:17:24 +0000 (16:17 +0200)]
Merge pull request #13694 from peterrum/do_interpolate_boundary_values

Generalize do_interpolate_boundary_values() for pyramid and wedge

2 years agoMerge pull request #13577 from drwells/muparser-pimpl
Daniel Arndt [Wed, 11 May 2022 13:17:13 +0000 (15:17 +0200)]
Merge pull request #13577 from drwells/muparser-pimpl

2 years agoImplement second variant for specialized preconditioner 13698/head
Martin Kronbichler [Mon, 9 May 2022 19:53:28 +0000 (21:53 +0200)]
Implement second variant for specialized preconditioner

2 years agoMerge pull request #12463 from peterrum/set_dof_values_by_interpolation_assert
Marc Fehling [Wed, 11 May 2022 04:36:52 +0000 (22:36 -0600)]
Merge pull request #12463 from peterrum/set_dof_values_by_interpolation_assert

Improve asserts in parallel::distributed::SolutionTransfer

2 years agoMerge pull request #13716 from marcfehling/changelog
Marc Fehling [Wed, 11 May 2022 02:03:49 +0000 (20:03 -0600)]
Merge pull request #13716 from marcfehling/changelog

Adjust changelog for 64bit nonzeros.

2 years agoMerge pull request #13631 from CorbinFoucart/python3_binding_cmake_build_fix
Bruno Turcksin [Wed, 11 May 2022 01:54:45 +0000 (21:54 -0400)]
Merge pull request #13631 from CorbinFoucart/python3_binding_cmake_build_fix

2 years agoMerge pull request #13714 from marcfehling/step55-ierr
Marc Fehling [Wed, 11 May 2022 00:44:44 +0000 (18:44 -0600)]
Merge pull request #13714 from marcfehling/step55-ierr

Fix test simplex/step-55.

2 years agoFix typo. 13716/head
Marc Fehling [Thu, 7 Apr 2022 04:40:30 +0000 (22:40 -0600)]
Fix typo.

2 years agoMerge pull request #13715 from singima/changelog_entry
Marc Fehling [Tue, 10 May 2022 22:29:03 +0000 (16:29 -0600)]
Merge pull request #13715 from singima/changelog_entry

changelog news entry

2 years agoAdjust changelog for 64bit nonzeros.
Marc Fehling [Tue, 10 May 2022 22:24:36 +0000 (16:24 -0600)]
Adjust changelog for 64bit nonzeros.

2 years agoFix test simplex/step-55. 13714/head
Marc Fehling [Tue, 10 May 2022 20:33:29 +0000 (14:33 -0600)]
Fix test simplex/step-55.

2 years agoMerge pull request #13711 from drwells/fix-nodal-renumbering-tests
Marc Fehling [Tue, 10 May 2022 21:58:33 +0000 (15:58 -0600)]
Merge pull request #13711 from drwells/fix-nodal-renumbering-tests

Fix the nodal renumbering tests.

2 years agoMerge pull request #13713 from tamiko/update_cdash_url
Marc Fehling [Tue, 10 May 2022 21:56:01 +0000 (15:56 -0600)]
Merge pull request #13713 from tamiko/update_cdash_url

Server move: Update server URLs

2 years agochangelog news entry 13715/head
Sean Ingimarson [Tue, 10 May 2022 21:20:01 +0000 (17:20 -0400)]
changelog news entry

2 years agoexamples/step-69: Update URL 13713/head
Matthias Maier [Tue, 10 May 2022 19:50:29 +0000 (14:50 -0500)]
examples/step-69: Update URL

2 years agoServer move: Update CDash URL
Matthias Maier [Tue, 10 May 2022 19:49:24 +0000 (14:49 -0500)]
Server move: Update CDash URL

2 years agoFixes CMake version > 3.12 python-binding build failure due to deprecated FindPythonI... 13631/head
Corbin Foucart [Fri, 22 Apr 2022 05:56:30 +0000 (01:56 -0400)]
Fixes CMake version > 3.12 python-binding build failure due to deprecated FindPythonInterp call.

2 years agoRestrict permissions for GITHUB_TOKEN. 13712/head
Marc Fehling [Tue, 10 May 2022 17:15:15 +0000 (11:15 -0600)]
Restrict permissions for GITHUB_TOKEN.

2 years agoGeneralize do_interpolate_boundary_values() for pyramid and wedge 13694/head
Peter Munch [Sun, 8 May 2022 15:29:24 +0000 (17:29 +0200)]
Generalize do_interpolate_boundary_values() for pyramid and wedge

2 years agoMerge pull request #13700 from drwells/celldata-default-arg
David Wells [Tue, 10 May 2022 15:32:25 +0000 (11:32 -0400)]
Merge pull request #13700 from drwells/celldata-default-arg

Correctly size CellData::vertices in GridTools.

2 years agoMerge pull request #13710 from masterleinad/restrict_feinterface_stokes
David Wells [Tue, 10 May 2022 15:32:02 +0000 (11:32 -0400)]
Merge pull request #13710 from masterleinad/restrict_feinterface_stokes

Restrict feinterface/stokes test

2 years agoFix the nodal renumbering tests. 13711/head
David Wells [Tue, 10 May 2022 13:24:21 +0000 (09:24 -0400)]
Fix the nodal renumbering tests.

Saving assertion messages in this way isn't portable.

2 years agoMerge pull request #13693 from peterrum/unit_face_support_points
Luca Heltai [Tue, 10 May 2022 13:17:06 +0000 (16:17 +0300)]
Merge pull request #13693 from peterrum/unit_face_support_points

unit_support_points and unit_face_support_points for wedges and pyramids

2 years agoMerge pull request #13706 from bangerth/ref-cell-2
David Wells [Tue, 10 May 2022 12:55:05 +0000 (08:55 -0400)]
Merge pull request #13706 from bangerth/ref-cell-2

Add ReferenceCell::get_midpoint_quadrature().

2 years agoCorrectly size CellData::vertices in GridTools. 13700/head
David Wells [Mon, 9 May 2022 16:20:16 +0000 (12:20 -0400)]
Correctly size CellData::vertices in GridTools.

2 years agoRestrict feinterface/stokes test 13710/head
Daniel Arndt [Tue, 10 May 2022 11:32:52 +0000 (13:32 +0200)]
Restrict feinterface/stokes test

2 years agoMerge pull request #13709 from simonsticko/add_asserts_mesh_classifier
Martin Kronbichler [Tue, 10 May 2022 10:42:59 +0000 (12:42 +0200)]
Merge pull request #13709 from simonsticko/add_asserts_mesh_classifier

Add two asserts in NonMatching::MeshClassifier.

2 years agoImprove asserts in parallel::distributed::SolutionTransfer 12463/head
Peter Munch [Fri, 25 Feb 2022 18:18:04 +0000 (19:18 +0100)]
Improve asserts in parallel::distributed::SolutionTransfer

2 years agoMerge pull request #13708 from simonsticko/exception_white_space
Daniel Arndt [Tue, 10 May 2022 09:01:52 +0000 (11:01 +0200)]
Merge pull request #13708 from simonsticko/exception_white_space

2 years agoMerge pull request #13699 from drwells/skip-default-cell-data
Peter Munch [Tue, 10 May 2022 08:44:55 +0000 (10:44 +0200)]
Merge pull request #13699 from drwells/skip-default-cell-data

Skip default values in get_coarse_mesh_description().

2 years agoAdd two asserts in NonMatching::MeshClassifier. 13709/head
Simon Sticko [Tue, 10 May 2022 06:10:50 +0000 (08:10 +0200)]
Add two asserts in NonMatching::MeshClassifier.

2 years agoRename a few variables and use range based loop in mesh classifer test.
Simon Sticko [Tue, 10 May 2022 06:35:58 +0000 (08:35 +0200)]
Rename a few variables and use range based loop in mesh classifer test.

2 years agoAdd white space to fix exception message split over several lines. 13708/head
Simon Sticko [Tue, 10 May 2022 05:48:48 +0000 (07:48 +0200)]
Add white space to fix exception message split over several lines.


In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.