]> https://gitweb.dealii.org/ - dealii.git/log
dealii.git
3 years agoMerge pull request #12629 from peterrum/signals_residual_step_fix
Peter Munch [Fri, 6 Aug 2021 17:31:33 +0000 (19:31 +0200)]
Merge pull request #12629 from peterrum/signals_residual_step_fix

Fix signal residual_step

3 years agoFix signal residual_step 12629/head
Peter Munch [Fri, 6 Aug 2021 15:28:44 +0000 (17:28 +0200)]
Fix signal residual_step

3 years agoMerge pull request #12411 from jppelteret/fe_interface_values_02
Timo Heister [Thu, 5 Aug 2021 16:32:00 +0000 (12:32 -0400)]
Merge pull request #12411 from jppelteret/fe_interface_values_02

FEInterfaceValues: Make class interfaces consistent with FEValues and its views

3 years agoMerge pull request #12623 from marcfehling/identity-constraints
David Wells [Thu, 5 Aug 2021 14:45:09 +0000 (10:45 -0400)]
Merge pull request #12623 from marcfehling/identity-constraints

Added diagnostic functions for `AffineConstraints`.

3 years agoMerge pull request #12618 from peterrum/TriangulationDescription_examples
Marc Fehling [Thu, 5 Aug 2021 04:06:33 +0000 (22:06 -0600)]
Merge pull request #12618 from peterrum/TriangulationDescription_examples

Extend documentation of TriangulationDescription

3 years agoAdded tests for AffineConstraints diagnostics. 12623/head
Marc Fehling [Wed, 4 Aug 2021 23:42:05 +0000 (17:42 -0600)]
Added tests for AffineConstraints diagnostics.

3 years agoAdded diagnostic functions for AffineConstraints.
Marc Fehling [Wed, 4 Aug 2021 23:18:09 +0000 (17:18 -0600)]
Added diagnostic functions for AffineConstraints.

3 years agoAdd a changelog entry 12411/head
Jean-Paul Pelteret [Sun, 1 Aug 2021 08:01:49 +0000 (10:01 +0200)]
Add a changelog entry

3 years agoUpdate tests
Jean-Paul Pelteret [Sat, 31 Jul 2021 10:46:39 +0000 (12:46 +0200)]
Update tests

3 years agoUpdate examples
Jean-Paul Pelteret [Sat, 31 Jul 2021 10:46:10 +0000 (12:46 +0200)]
Update examples

3 years agoExtend documention of TriangulationDescription 12618/head
Peter Munch [Sun, 1 Aug 2021 06:09:15 +0000 (08:09 +0200)]
Extend documention of TriangulationDescription

3 years agoMerge pull request #12610 from drwells/add-more-wv-rules
Martin Kronbichler [Mon, 2 Aug 2021 19:56:02 +0000 (21:56 +0200)]
Merge pull request #12610 from drwells/add-more-wv-rules

Add more Witherden-Vincent rules

3 years agoMerge pull request #12619 from drwells/fix-parenthesis
David Wells [Mon, 2 Aug 2021 17:07:39 +0000 (13:07 -0400)]
Merge pull request #12619 from drwells/fix-parenthesis

Fix a parenthesis.

3 years agoFix a parenthesis. 12619/head
David Wells [Mon, 2 Aug 2021 11:59:07 +0000 (07:59 -0400)]
Fix a parenthesis.

I see a bunch of warnings of the form

/Users/runner/work/dealii/dealii/include/deal.II/matrix_free/tools.h:497:35:
error: taking the absolute value of unsigned type 'bool' has no effect [-Werror,-Wabsolute-value]
854
                                  std::abs(values_dofs[j][0] &&

on the CI tester.

3 years agoAdd a lot more Witherden-Vincent rules. 12610/head
David Wells [Thu, 29 Jul 2021 16:21:54 +0000 (12:21 -0400)]
Add a lot more Witherden-Vincent rules.

This includes most of the even-degree rules.

For posterity: here's the script I used to print quadpy rules rather than
copying numbers individually:

import quadpy as qp

def format_16(x):
    return '{:.16e}'.format(float(x))

def print_scheme(scheme):
    sym_data = scheme.symmetry_data
    print("// WV-{}, {}D".format(scheme.degree, scheme.dim))
    for key in sym_data.keys():
        if key == 'centroid' or key == 's4':
            print("b_point_permutations.push_back({centroid});")
            print("b_weights.push_back({});".format(format_16(sym_data[key][0][0])))
        elif key == 'd3_aa' or key == 's31':
            weights = [format_16(w) for w in sym_data[key][0]]
            points = [format_16(p) for p in sym_data[key][1]]
            assert len(weights) == len(points)
            for i in range(len(weights)):
                print("process_point_1({}, {});".format(points[i], weights[i]))
        elif key == 'd3_ab' or key == 's211':
            weights = [format_16(w) for w in sym_data[key][0]]
            points1 = [format_16(p) for p in sym_data[key][1]]
            points2 = [format_16(p) for p in sym_data[key][2]]
            assert len(weights) == len(points1)
            assert len(points2) == len(points1)
            for i in range(len(weights)):
                print(("process_point_3({},"
                       "\n                {},"
                       "\n                {});")
                      .format(points1[i], points2[i], weights[i]))
        elif key == 's22':
            assert scheme.dim == 3
            weights = [format_16(w) for w in sym_data[key][0]]
            points = [format_16(p) for p in sym_data[key][1]]
            assert len(weights) == len(points)
            for i in range(len(weights)):
                print(("process_point_2({},"
                       "\n                {});")
                      .format(points[i], weights[i]))
        else:
            assert False

3 years agoMerge pull request #12613 from drwells/fix-structdim-comments
Martin Kronbichler [Sun, 1 Aug 2021 11:40:40 +0000 (13:40 +0200)]
Merge pull request #12613 from drwells/fix-structdim-comments

Fix two comments in TriaAccessor.

3 years agoMerge pull request #12559 from tamiko/modernize_step_69
Marc Fehling [Sat, 31 Jul 2021 21:06:00 +0000 (15:06 -0600)]
Merge pull request #12559 from tamiko/modernize_step_69

Step-69: Use SolutionTransfer instead of low-level boost archive

3 years agoStep-69: Apply review suggestion 12559/head
Matthias Maier [Sat, 31 Jul 2021 14:25:52 +0000 (09:25 -0500)]
Step-69: Apply review suggestion

3 years agoStep-69: Use SolutionTransfer instead of low-level boost archive
Matthias Maier [Sat, 31 Jul 2021 14:23:37 +0000 (09:23 -0500)]
Step-69: Use SolutionTransfer instead of low-level boost archive

3 years agoMerge pull request #12560 from peterrum/mf_hn
Martin Kronbichler [Fri, 30 Jul 2021 19:09:44 +0000 (21:09 +0200)]
Merge pull request #12560 from peterrum/mf_hn

Optimize hanging-node constraints in MatrixFree

3 years agoMerge pull request #12611 from drwells/boundary-to-manifold
David Wells [Fri, 30 Jul 2021 18:52:29 +0000 (14:52 -0400)]
Merge pull request #12611 from drwells/boundary-to-manifold

Convert some (mislabeled) boundary ids to manifold ids.

3 years agoFix two comments in TriaAccessor. 12613/head
David Wells [Fri, 30 Jul 2021 18:50:19 +0000 (14:50 -0400)]
Fix two comments in TriaAccessor.

We have a 'cell' when the structural dimension matches the topological
dimension.

3 years agoMerge pull request #12607 from bangerth/type
Daniel Arndt [Thu, 29 Jul 2021 20:52:56 +0000 (16:52 -0400)]
Merge pull request #12607 from bangerth/type

Fix a few type mistakes in AlignedVector.

3 years agoConvert some (mislabeled) boundary ids to manifold ids. 12611/head
David Wells [Thu, 29 Jul 2021 19:52:46 +0000 (15:52 -0400)]
Convert some (mislabeled) boundary ids to manifold ids.

3 years agoUse a switch statement.
David Wells [Thu, 29 Jul 2021 16:20:34 +0000 (12:20 -0400)]
Use a switch statement.

Less indentation makes this easier to read.

3 years agoRemove an extra namespace qualification.
David Wells [Thu, 29 Jul 2021 16:19:38 +0000 (12:19 -0400)]
Remove an extra namespace qualification.

This isn't necessary now that we moved Simplex::QGauss to QGaussSimplex.

3 years agoFix a few type mistakes in AlignedVector. 12607/head
Wolfgang Bangerth [Thu, 29 Jul 2021 01:30:09 +0000 (19:30 -0600)]
Fix a few type mistakes in AlignedVector.

3 years agoMerge pull request #12556 from bangerth/units
Daniel Arndt [Wed, 28 Jul 2021 20:57:44 +0000 (16:57 -0400)]
Merge pull request #12556 from bangerth/units

3 years agoMerge pull request #12605 from tjhei/doc_typo_rtree
Daniel Arndt [Wed, 28 Jul 2021 19:22:26 +0000 (15:22 -0400)]
Merge pull request #12605 from tjhei/doc_typo_rtree

doc: fix typo in rtree.h

3 years agoGeneralize HangingNodes 12560/head
Peter Munch [Fri, 16 Jul 2021 17:03:49 +0000 (19:03 +0200)]
Generalize HangingNodes

3 years agoTry a different syntax. 12556/head
Wolfgang Bangerth [Thu, 22 Jul 2021 20:37:25 +0000 (14:37 -0600)]
Try a different syntax.

3 years agodoc: fix typo 12605/head
Timo Heister [Wed, 28 Jul 2021 16:10:34 +0000 (12:10 -0400)]
doc: fix typo

3 years agoMerge pull request #12602 from peterrum/rpe_unique_fix
Peter Munch [Wed, 28 Jul 2021 15:58:53 +0000 (17:58 +0200)]
Merge pull request #12602 from peterrum/rpe_unique_fix

Fix tolerances in GridTools::internal::distributed_compute_point_locations()

3 years agoFix tolerances in GridTools::internal::distributed_compute_point_locations() 12602/head
Peter Munch [Wed, 28 Jul 2021 13:07:22 +0000 (15:07 +0200)]
Fix tolerances in GridTools::internal::distributed_compute_point_locations()

3 years agoMerge pull request #11108 from masterleinad/clang-tidy-11
Daniel Arndt [Tue, 27 Jul 2021 20:57:45 +0000 (16:57 -0400)]
Merge pull request #11108 from masterleinad/clang-tidy-11

3 years agoApply clang-format 11108/head
Daniel Arndt [Tue, 27 Jul 2021 19:24:31 +0000 (15:24 -0400)]
Apply clang-format

3 years agoDelete indent step in CI
Daniel Arndt [Fri, 9 Jul 2021 14:52:13 +0000 (10:52 -0400)]
Delete indent step in CI

3 years agoadd Darwin Intel binaries
Matthias Maier [Tue, 15 Jun 2021 14:57:42 +0000 (09:57 -0500)]
add Darwin Intel binaries

3 years agoAttempt to suppress clang-tidy warning
Daniel Arndt [Tue, 15 Jun 2021 18:30:31 +0000 (14:30 -0400)]
Attempt to suppress clang-tidy warning

3 years agoadd Darwin Intel binaries
Matthias Maier [Tue, 15 Jun 2021 14:57:42 +0000 (09:57 -0500)]
add Darwin Intel binaries

3 years agoupdate clang-format download script to version 11
Matthias Maier [Sat, 12 Jun 2021 04:57:01 +0000 (23:57 -0500)]
update clang-format download script to version 11

3 years agoUpdate infrastructure some more
Daniel Arndt [Fri, 11 Jun 2021 20:43:16 +0000 (16:43 -0400)]
Update infrastructure some more

3 years agoupdate clang-format infrastructure to version 11
Matthias Maier [Fri, 11 Jun 2021 16:08:02 +0000 (11:08 -0500)]
update clang-format infrastructure to version 11

3 years agoRequire the correct version in contrib/utilities/indent_common.sh
Daniel Arndt [Fri, 11 Jun 2021 20:32:06 +0000 (16:32 -0400)]
Require the correct version in contrib/utilities/indent_common.sh

3 years agoUpdate to clang-tidy-11
Daniel Arndt [Thu, 29 Oct 2020 20:48:51 +0000 (16:48 -0400)]
Update to clang-tidy-11

3 years agoMerge pull request #12600 from peterrum/convert_map_pattern
Peter Munch [Tue, 27 Jul 2021 04:40:55 +0000 (06:40 +0200)]
Merge pull request #12600 from peterrum/convert_map_pattern

Fix Convert for map

3 years agoMerge pull request #12578 from agrayver/python_mapping_rename
Peter Munch [Tue, 27 Jul 2021 04:40:43 +0000 (06:40 +0200)]
Merge pull request #12578 from agrayver/python_mapping_rename

Rename MappingQGeneric to MappingQ in python interface

3 years agoMerge pull request #12599 from peterrum/find_active_cell_around_point_end
David Wells [Mon, 26 Jul 2021 21:39:47 +0000 (17:39 -0400)]
Merge pull request #12599 from peterrum/find_active_cell_around_point_end

Let find_active_cell_around_point() return mesh.end() if point is not found in BBs

3 years agoRename MappingQGeneric to MappingQ in python 12578/head
Alexander Grayver [Sat, 17 Jul 2021 21:07:14 +0000 (23:07 +0200)]
Rename MappingQGeneric to MappingQ in python

3 years agoMerge pull request #12598 from peterrum/project_docu
Martin Kronbichler [Sun, 25 Jul 2021 15:07:25 +0000 (17:07 +0200)]
Merge pull request #12598 from peterrum/project_docu

Fix documentation of VT::project()

3 years agoFix Convert for map 12600/head
Peter Munch [Sun, 25 Jul 2021 13:45:54 +0000 (15:45 +0200)]
Fix Convert for map

3 years agoLet find_active_cell_around_point() return mesh.end() if point is not found in BBs 12599/head
Peter Munch [Sun, 25 Jul 2021 13:00:47 +0000 (15:00 +0200)]
Let find_active_cell_around_point() return mesh.end() if point is not found in BBs

3 years agoFix documentation of VT::project() 12598/head
Peter Munch [Sat, 24 Jul 2021 11:48:35 +0000 (13:48 +0200)]
Fix documentation of VT::project()

3 years agoMerge pull request #12595 from bangerth/doc
Daniel Arndt [Fri, 23 Jul 2021 21:28:58 +0000 (17:28 -0400)]
Merge pull request #12595 from bangerth/doc

Update documentation in a couple of places.

3 years agoUpdate documentation in a couple of places. 12595/head
Wolfgang Bangerth [Fri, 23 Jul 2021 18:57:14 +0000 (12:57 -0600)]
Update documentation in a couple of places.

3 years agoMerge pull request #12588 from zjiaqi2018/table_clear
Wolfgang Bangerth [Thu, 22 Jul 2021 22:38:05 +0000 (16:38 -0600)]
Merge pull request #12588 from zjiaqi2018/table_clear

Add clear() to the Table class

3 years agoMerge pull request #12592 from peterrum/compute_diagonal_util_tolerance_float
Wolfgang Bangerth [Thu, 22 Jul 2021 22:37:57 +0000 (16:37 -0600)]
Merge pull request #12592 from peterrum/compute_diagonal_util_tolerance_float

Reduce tolerance in test

3 years agoMerge pull request #12591 from marcfehling/intel18
Marc Fehling [Thu, 22 Jul 2021 21:14:33 +0000 (15:14 -0600)]
Merge pull request #12591 from marcfehling/intel18

Intel 18 does not like assertions in nested lambdas.

3 years agoReduce tolerance in test 12592/head
Peter Munch [Thu, 22 Jul 2021 20:05:05 +0000 (22:05 +0200)]
Reduce tolerance in test

3 years agoIntel18 does not like assertions in nested lambdas. 12591/head
Marc Fehling [Thu, 22 Jul 2021 19:43:14 +0000 (14:43 -0500)]
Intel18 does not like assertions in nested lambdas.

3 years agoMerge pull request #12554 from marcfehling/ci-oneapi
Peter Munch [Thu, 22 Jul 2021 06:46:58 +0000 (08:46 +0200)]
Merge pull request #12554 from marcfehling/ci-oneapi

Add Intel oneAPI to github-actions.

3 years agoMerge pull request #12590 from Rombur/fix_warnings
Marc Fehling [Wed, 21 Jul 2021 22:16:00 +0000 (16:16 -0600)]
Merge pull request #12590 from Rombur/fix_warnings

Fix unused-but-set-variable warnings

3 years agoMerge pull request #12589 from bangerth/include
Marc Fehling [Wed, 21 Jul 2021 19:24:45 +0000 (13:24 -0600)]
Merge pull request #12589 from bangerth/include

Add a missing include file.

3 years agominor fix and changelog 12588/head
Jiaqi Zhang [Wed, 21 Jul 2021 18:03:05 +0000 (18:03 +0000)]
minor fix and changelog

3 years agoAdd a missing include file. 12589/head
Wolfgang Bangerth [Wed, 21 Jul 2021 16:41:52 +0000 (10:41 -0600)]
Add a missing include file.

3 years agoFix unused-but-set-variable warnings 12590/head
Bruno Turcksin [Wed, 21 Jul 2021 16:04:03 +0000 (16:04 +0000)]
Fix unused-but-set-variable warnings

3 years agoadd table.clear()
Jiaqi Zhang [Wed, 21 Jul 2021 15:09:48 +0000 (15:09 +0000)]
add table.clear()

3 years agoMerge pull request #12585 from peterrum/compute_diagonal_ref
Peter Munch [Tue, 20 Jul 2021 19:00:56 +0000 (21:00 +0200)]
Merge pull request #12585 from peterrum/compute_diagonal_ref

Add new compute_diagonal() test

3 years agoAdd new compute_diagonal() test 12585/head
Peter Munch [Tue, 20 Jul 2021 07:38:59 +0000 (09:38 +0200)]
Add new compute_diagonal() test

3 years agoMerge pull request #12577 from peterrum/hn_generalize
Martin Kronbichler [Tue, 20 Jul 2021 15:58:42 +0000 (17:58 +0200)]
Merge pull request #12577 from peterrum/hn_generalize

Generalize HangingNodes

3 years agoGeneralize HangingNodes 12577/head
Peter Munch [Fri, 16 Jul 2021 17:03:49 +0000 (19:03 +0200)]
Generalize HangingNodes

3 years agoMerge pull request #12583 from drwells/mapping-fe-field-face-simplices
Martin Kronbichler [Tue, 20 Jul 2021 05:28:35 +0000 (07:28 +0200)]
Merge pull request #12583 from drwells/mapping-fe-field-face-simplices

Mapping fe field face simplices

3 years agoMerge pull request #12582 from peterrum/ConstraintTypes_enum
Martin Kronbichler [Tue, 20 Jul 2021 05:21:56 +0000 (07:21 +0200)]
Merge pull request #12582 from peterrum/ConstraintTypes_enum

Make internal::MatrixFreeFunctions::ConstraintTypes enum

3 years agoAdd a test for both features. 12583/head
David Wells [Mon, 19 Jul 2021 21:55:36 +0000 (17:55 -0400)]
Add a test for both features.

3 years agoFix cell->face(0)->measure() for tets.
David Wells [Mon, 19 Jul 2021 21:55:02 +0000 (17:55 -0400)]
Fix cell->face(0)->measure() for tets.

Fortunately its easy to find the area of a triangle.

3 years agoCopy quadrature weights in MappingFEField.
David Wells [Mon, 19 Jul 2021 21:54:38 +0000 (17:54 -0400)]
Copy quadrature weights in MappingFEField.

3 years agoUse the correct reference cell in MappingFEField.
David Wells [Mon, 19 Jul 2021 20:53:52 +0000 (16:53 -0400)]
Use the correct reference cell in MappingFEField.

3 years agoAdd a new class member MappingFEField::reference_cell.
David Wells [Mon, 19 Jul 2021 20:50:50 +0000 (16:50 -0400)]
Add a new class member MappingFEField::reference_cell.

This is easier than constantly looking it up.

3 years agoMake internal::MatrixFreeFunctions::ConstraintTypes enum 12582/head
Peter Munch [Mon, 19 Jul 2021 19:30:19 +0000 (21:30 +0200)]
Make internal::MatrixFreeFunctions::ConstraintTypes enum

3 years agoMerge pull request #12571 from peterrum/hanging_nodes_internal
Bruno Turcksin [Mon, 19 Jul 2021 18:59:30 +0000 (14:59 -0400)]
Merge pull request #12571 from peterrum/hanging_nodes_internal

3 years agoFill CUDAWrappers::internal::constraint_weights inside of ReinitHelper 12571/head
Peter Munch [Fri, 16 Jul 2021 16:21:01 +0000 (18:21 +0200)]
Fill CUDAWrappers::internal::constraint_weights inside of ReinitHelper

3 years agoRename cuda_hanging_nodes_internal.h to hanging_nodes_internal.h
Peter Munch [Thu, 15 Jul 2021 07:28:48 +0000 (09:28 +0200)]
Rename cuda_hanging_nodes_internal.h to hanging_nodes_internal.h

3 years agoMerge pull request #12581 from peterrum/read_dof_indices
Martin Kronbichler [Mon, 19 Jul 2021 13:47:02 +0000 (15:47 +0200)]
Merge pull request #12581 from peterrum/read_dof_indices

DoFInfo::read_dof_indices(): add additional index vector

3 years agoDoFInfo::read_dof_indices(): add additional index vector 12581/head
Peter Munch [Mon, 19 Jul 2021 10:29:59 +0000 (12:29 +0200)]
DoFInfo::read_dof_indices(): add additional index vector

3 years agoMerge pull request #12579 from kronbichler/fix_64bit
Peter Munch [Sun, 18 Jul 2021 19:40:41 +0000 (21:40 +0200)]
Merge pull request #12579 from kronbichler/fix_64bit

DoFHandlerPolicy: Fix 64 bit code path

3 years agoDoFHandlerPolicy: Fix 64 bit code path 12579/head
Martin Kronbichler [Sun, 18 Jul 2021 18:08:25 +0000 (20:08 +0200)]
DoFHandlerPolicy: Fix 64 bit code path

3 years agoMerge pull request #12576 from kronbichler/simplify_dof_accessor
Peter Munch [Sun, 18 Jul 2021 05:38:02 +0000 (07:38 +0200)]
Merge pull request #12576 from kronbichler/simplify_dof_accessor

Implement DoFHandler::distribute_dofs with a single pass through entities

3 years agoMerge pull request #12562 from peterrum/MGCoarseGridIterativeSolver_float
Martin Kronbichler [Sat, 17 Jul 2021 14:32:41 +0000 (16:32 +0200)]
Merge pull request #12562 from peterrum/MGCoarseGridIterativeSolver_float

Enable different VectorTypes in MGCoarseGridIterativeSolver

3 years agoUse faster process_dof_indices in one more place 12576/head
Martin Kronbichler [Sat, 17 Jul 2021 10:16:28 +0000 (12:16 +0200)]
Use faster process_dof_indices in one more place

3 years agoMerge pull request #12563 from peterrum/si_subface_interpolation_matrix
Martin Kronbichler [Sat, 17 Jul 2021 09:39:17 +0000 (11:39 +0200)]
Merge pull request #12563 from peterrum/si_subface_interpolation_matrix

Introduce ShapeInfo::subface_interpolation_matrix

3 years agoDoFHandler::distribute_dofs: only go through entities once
Martin Kronbichler [Fri, 16 Jul 2021 16:43:58 +0000 (18:43 +0200)]
DoFHandler::distribute_dofs: only go through entities once

3 years agoSimplify implementation of set/get_dof_indices
Martin Kronbichler [Fri, 16 Jul 2021 16:33:27 +0000 (18:33 +0200)]
Simplify implementation of set/get_dof_indices

3 years agoMerge pull request #12574 from kronbichler/improve_dof_handler_distr
Martin Kronbichler [Sat, 17 Jul 2021 09:32:17 +0000 (11:32 +0200)]
Merge pull request #12574 from kronbichler/improve_dof_handler_distr

Avoid unnecessary updates of cell dof index cache in DoFHandlerPolicy

3 years agoMerge pull request #12572 from bangerth/64b
David Wells [Fri, 16 Jul 2021 20:04:24 +0000 (16:04 -0400)]
Merge pull request #12572 from bangerth/64b

Add a couple of exceptions that ensure we don't accidentally run out of indices.

3 years agoMerge pull request #12573 from drwells/q-iterated-simplex
Martin Kronbichler [Fri, 16 Jul 2021 19:03:45 +0000 (21:03 +0200)]
Merge pull request #12573 from drwells/q-iterated-simplex

Implement QIteratedSimplex.

3 years agoAdd documentation about cache 12574/head
Martin Kronbichler [Fri, 16 Jul 2021 17:19:52 +0000 (19:19 +0200)]
Add documentation about cache

3 years agoImplement QIteratedSimplex. 12573/head
David Wells [Thu, 15 Jul 2021 23:42:00 +0000 (19:42 -0400)]
Implement QIteratedSimplex.

A limited version of QIterated for simplex meshes.

3 years agoIntroduce ShapeInfo::subface_interpolation_matrix 12563/head
Peter Munch [Sun, 11 Jul 2021 19:53:55 +0000 (21:53 +0200)]
Introduce ShapeInfo::subface_interpolation_matrix

3 years agoMerge pull request #12454 from kronbichler/update_raviart_thomas_nodal
David Wells [Fri, 16 Jul 2021 13:15:01 +0000 (09:15 -0400)]
Merge pull request #12454 from kronbichler/update_raviart_thomas_nodal

Straight-forward tensor-product version of FE_RaviartThomasNodal

3 years agoAvoid unnecessary updates of cell dof index cache in DoFHandlerPolicy
Martin Kronbichler [Fri, 16 Jul 2021 12:12:20 +0000 (14:12 +0200)]
Avoid unnecessary updates of cell dof index cache in DoFHandlerPolicy


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.