]>
https://gitweb.dealii.org/ - dealii.git/log
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
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`.
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
Marc Fehling [Wed, 4 Aug 2021 23:42:05 +0000 (17:42 -0600)]
Added tests for AffineConstraints diagnostics.
Marc Fehling [Wed, 4 Aug 2021 23:18:09 +0000 (17:18 -0600)]
Added diagnostic functions for AffineConstraints.
Jean-Paul Pelteret [Sun, 1 Aug 2021 08:01:49 +0000 (10:01 +0200)]
Add a changelog entry
Jean-Paul Pelteret [Sat, 31 Jul 2021 10:46:39 +0000 (12:46 +0200)]
Update tests
Jean-Paul Pelteret [Sat, 31 Jul 2021 10:46:10 +0000 (12:46 +0200)]
Update examples
Peter Munch [Sun, 1 Aug 2021 06:09:15 +0000 (08:09 +0200)]
Extend documention of TriangulationDescription
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
David Wells [Mon, 2 Aug 2021 17:07:39 +0000 (13:07 -0400)]
Merge pull request #12619 from drwells/fix-parenthesis
Fix a parenthesis.
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.
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
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.
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
Matthias Maier [Sat, 31 Jul 2021 14:25:52 +0000 (09:25 -0500)]
Step-69: Apply review suggestion
Matthias Maier [Sat, 31 Jul 2021 14:23:37 +0000 (09:23 -0500)]
Step-69: Use SolutionTransfer instead of low-level boost archive
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
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.
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.
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.
David Wells [Thu, 29 Jul 2021 19:52:46 +0000 (15:52 -0400)]
Convert some (mislabeled) boundary ids to manifold ids.
David Wells [Thu, 29 Jul 2021 16:20:34 +0000 (12:20 -0400)]
Use a switch statement.
Less indentation makes this easier to read.
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.
Wolfgang Bangerth [Thu, 29 Jul 2021 01:30:09 +0000 (19:30 -0600)]
Fix a few type mistakes in AlignedVector.
Daniel Arndt [Wed, 28 Jul 2021 20:57:44 +0000 (16:57 -0400)]
Merge pull request #12556 from bangerth/units
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
Peter Munch [Fri, 16 Jul 2021 17:03:49 +0000 (19:03 +0200)]
Generalize HangingNodes
Wolfgang Bangerth [Thu, 22 Jul 2021 20:37:25 +0000 (14:37 -0600)]
Try a different syntax.
Timo Heister [Wed, 28 Jul 2021 16:10:34 +0000 (12:10 -0400)]
doc: fix typo
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()
Peter Munch [Wed, 28 Jul 2021 13:07:22 +0000 (15:07 +0200)]
Fix tolerances in GridTools::internal::distributed_compute_point_locations()
Daniel Arndt [Tue, 27 Jul 2021 20:57:45 +0000 (16:57 -0400)]
Merge pull request #11108 from masterleinad/clang-tidy-11
Daniel Arndt [Tue, 27 Jul 2021 19:24:31 +0000 (15:24 -0400)]
Apply clang-format
Daniel Arndt [Fri, 9 Jul 2021 14:52:13 +0000 (10:52 -0400)]
Delete indent step in CI
Matthias Maier [Tue, 15 Jun 2021 14:57:42 +0000 (09:57 -0500)]
add Darwin Intel binaries
Daniel Arndt [Tue, 15 Jun 2021 18:30:31 +0000 (14:30 -0400)]
Attempt to suppress clang-tidy warning
Matthias Maier [Tue, 15 Jun 2021 14:57:42 +0000 (09:57 -0500)]
add Darwin Intel binaries
Matthias Maier [Sat, 12 Jun 2021 04:57:01 +0000 (23:57 -0500)]
update clang-format download script to version 11
Daniel Arndt [Fri, 11 Jun 2021 20:43:16 +0000 (16:43 -0400)]
Update infrastructure some more
Matthias Maier [Fri, 11 Jun 2021 16:08:02 +0000 (11:08 -0500)]
update clang-format infrastructure to version 11
Daniel Arndt [Fri, 11 Jun 2021 20:32:06 +0000 (16:32 -0400)]
Require the correct version in contrib/utilities/indent_common.sh
Daniel Arndt [Thu, 29 Oct 2020 20:48:51 +0000 (16:48 -0400)]
Update to clang-tidy-11
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
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
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
Alexander Grayver [Sat, 17 Jul 2021 21:07:14 +0000 (23:07 +0200)]
Rename MappingQGeneric to MappingQ in python
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()
Peter Munch [Sun, 25 Jul 2021 13:45:54 +0000 (15:45 +0200)]
Fix Convert for map
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
Peter Munch [Sat, 24 Jul 2021 11:48:35 +0000 (13:48 +0200)]
Fix documentation of VT::project()
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.
Wolfgang Bangerth [Fri, 23 Jul 2021 18:57:14 +0000 (12:57 -0600)]
Update documentation in a couple of places.
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
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
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.
Peter Munch [Thu, 22 Jul 2021 20:05:05 +0000 (22:05 +0200)]
Reduce tolerance in test
Marc Fehling [Thu, 22 Jul 2021 19:43:14 +0000 (14:43 -0500)]
Intel18 does not like assertions in nested lambdas.
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.
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
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.
Jiaqi Zhang [Wed, 21 Jul 2021 18:03:05 +0000 (18:03 +0000)]
minor fix and changelog
Wolfgang Bangerth [Wed, 21 Jul 2021 16:41:52 +0000 (10:41 -0600)]
Add a missing include file.
Bruno Turcksin [Wed, 21 Jul 2021 16:04:03 +0000 (16:04 +0000)]
Fix unused-but-set-variable warnings
Jiaqi Zhang [Wed, 21 Jul 2021 15:09:48 +0000 (15:09 +0000)]
add table.clear()
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
Peter Munch [Tue, 20 Jul 2021 07:38:59 +0000 (09:38 +0200)]
Add new compute_diagonal() test
Martin Kronbichler [Tue, 20 Jul 2021 15:58:42 +0000 (17:58 +0200)]
Merge pull request #12577 from peterrum/hn_generalize
Generalize HangingNodes
Peter Munch [Fri, 16 Jul 2021 17:03:49 +0000 (19:03 +0200)]
Generalize HangingNodes
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
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
David Wells [Mon, 19 Jul 2021 21:55:36 +0000 (17:55 -0400)]
Add a test for both features.
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.
David Wells [Mon, 19 Jul 2021 21:54:38 +0000 (17:54 -0400)]
Copy quadrature weights in MappingFEField.
David Wells [Mon, 19 Jul 2021 20:53:52 +0000 (16:53 -0400)]
Use the correct reference cell in MappingFEField.
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.
Peter Munch [Mon, 19 Jul 2021 19:30:19 +0000 (21:30 +0200)]
Make internal::MatrixFreeFunctions::ConstraintTypes enum
Bruno Turcksin [Mon, 19 Jul 2021 18:59:30 +0000 (14:59 -0400)]
Merge pull request #12571 from peterrum/hanging_nodes_internal
Peter Munch [Fri, 16 Jul 2021 16:21:01 +0000 (18:21 +0200)]
Fill CUDAWrappers::internal::constraint_weights inside of ReinitHelper
Peter Munch [Thu, 15 Jul 2021 07:28:48 +0000 (09:28 +0200)]
Rename cuda_hanging_nodes_internal.h to hanging_nodes_internal.h
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
Peter Munch [Mon, 19 Jul 2021 10:29:59 +0000 (12:29 +0200)]
DoFInfo::read_dof_indices(): add additional index vector
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
Martin Kronbichler [Sun, 18 Jul 2021 18:08:25 +0000 (20:08 +0200)]
DoFHandlerPolicy: Fix 64 bit code path
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
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
Martin Kronbichler [Sat, 17 Jul 2021 10:16:28 +0000 (12:16 +0200)]
Use faster process_dof_indices in one more place
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
Martin Kronbichler [Fri, 16 Jul 2021 16:43:58 +0000 (18:43 +0200)]
DoFHandler::distribute_dofs: only go through entities once
Martin Kronbichler [Fri, 16 Jul 2021 16:33:27 +0000 (18:33 +0200)]
Simplify implementation of set/get_dof_indices
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
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.
Martin Kronbichler [Fri, 16 Jul 2021 19:03:45 +0000 (21:03 +0200)]
Merge pull request #12573 from drwells/q-iterated-simplex
Implement QIteratedSimplex.
Martin Kronbichler [Fri, 16 Jul 2021 17:19:52 +0000 (19:19 +0200)]
Add documentation about cache
David Wells [Thu, 15 Jul 2021 23:42:00 +0000 (19:42 -0400)]
Implement QIteratedSimplex.
A limited version of QIterated for simplex meshes.
Peter Munch [Sun, 11 Jul 2021 19:53:55 +0000 (21:53 +0200)]
Introduce ShapeInfo::subface_interpolation_matrix
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
Martin Kronbichler [Fri, 16 Jul 2021 12:12:20 +0000 (14:12 +0200)]
Avoid unnecessary updates of cell dof index cache in DoFHandlerPolicy
Matthias Maier [Fri, 16 Jul 2021 07:58:15 +0000 (02:58 -0500)]
Merge pull request #12564 from masterleinad/suggest_non_mpi_compiler_wrappers
Avoid suggesting using MPI compiler wrappers as CMake compilers
Wolfgang Bangerth [Thu, 15 Jul 2021 22:27:12 +0000 (16:27 -0600)]
Add a couple of exceptions that ensure we don't accidentally run out of indices.
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.