]>
https://gitweb.dealii.org/ - dealii.git/log
Wolfgang Bangerth [Thu, 19 Aug 2021 23:18:46 +0000 (17:18 -0600)]
Allow for the default construction of 1d face iterators.
David Wells [Thu, 19 Aug 2021 20:58:32 +0000 (16:58 -0400)]
Merge pull request #12546 from TLJB/gdb-pprinter-fix
fix: Updated dotgdbinit to work with version 9.3
Till Budde [Mon, 5 Jul 2021 11:48:12 +0000 (13:48 +0200)]
fix: Updated dotgdbinit to work with version 9.3
Fixed VectorPrinters and AlignedVectorPrinters dependency on
deprecated members data_begin and data_end.
Timo Heister [Thu, 19 Aug 2021 17:06:50 +0000 (13:06 -0400)]
Merge pull request #12609 from bangerth/move-replicate
Fix AlignedVector memory management after replicate_across_communicator()
Daniel Arndt [Thu, 19 Aug 2021 14:28:39 +0000 (10:28 -0400)]
Merge pull request #12677 from kronbichler/minor_cleanup
tria.cc: Make exception and comment easier to read
Peter Munch [Thu, 19 Aug 2021 12:12:06 +0000 (14:12 +0200)]
Merge pull request #12678 from amartinhuertas/patch-1
Typo fix in step-38 intro.dox
Alberto F. Martin [Thu, 19 Aug 2021 10:36:04 +0000 (20:36 +1000)]
Typo fix in step-38 intro.dox
Martin Kronbichler [Thu, 19 Aug 2021 09:48:28 +0000 (11:48 +0200)]
tria.cc: Make exception and comment easier to read
Marc Fehling [Thu, 19 Aug 2021 02:38:47 +0000 (20:38 -0600)]
Merge pull request #12674 from bangerth/const
Make TriaAccessor::set_*_boundary() const.
Wolfgang Bangerth [Thu, 19 Aug 2021 02:34:15 +0000 (20:34 -0600)]
Merge pull request #12675 from marcfehling/tria-faces
Avoid serializing lines on TriaFaces twice.
Wolfgang Bangerth [Thu, 19 Aug 2021 02:33:46 +0000 (20:33 -0600)]
Merge pull request #12670 from drwells/avoid-quadrature-copy
Avoid copying some Quadrature rules in FESystem.
Marc Fehling [Thu, 19 Aug 2021 00:33:37 +0000 (18:33 -0600)]
Avoid serializing lines on TriaFaces twice.
Wolfgang Bangerth [Thu, 19 Aug 2021 00:14:31 +0000 (18:14 -0600)]
Merge pull request #12671 from drwells/mark-as-protected
Mark some things as protected.
Wolfgang Bangerth [Thu, 19 Aug 2021 00:14:10 +0000 (18:14 -0600)]
Merge pull request #12672 from drwells/use-get-vertices
Use Mapping::get_vertices().
Wolfgang Bangerth [Thu, 19 Aug 2021 00:13:37 +0000 (18:13 -0600)]
Merge pull request #12673 from drwells/remove-unused-field
Remove an unused member variable.
Wolfgang Bangerth [Thu, 19 Aug 2021 00:02:40 +0000 (18:02 -0600)]
Merge pull request #12601 from marcfehling/fix-load-3
Deprecated autopartition parameter in parallel::DistributedTriangulationBase::load()
Wolfgang Bangerth [Wed, 18 Aug 2021 22:42:24 +0000 (16:42 -0600)]
Add test.
Wolfgang Bangerth [Wed, 18 Aug 2021 22:37:29 +0000 (16:37 -0600)]
Add a changelog entry.
Wolfgang Bangerth [Wed, 18 Aug 2021 22:20:53 +0000 (16:20 -0600)]
Make TriaAccessor::set_*_boundary() const.
David Wells [Wed, 18 Aug 2021 20:08:50 +0000 (16:08 -0400)]
Mark some things as protected.
These are protected, not private, in the base class.
David Wells [Wed, 18 Aug 2021 20:07:59 +0000 (16:07 -0400)]
Use Mapping::get_vertices().
This is much faster for MappingFEField and about the same for other mapping
classes.
David Wells [Wed, 18 Aug 2021 20:04:19 +0000 (16:04 -0400)]
Remove an unused member variable.
Now that we have hp::Collection (see
84f55c7706 ) this field is no longer used.
David Wells [Wed, 18 Aug 2021 19:47:36 +0000 (15:47 -0400)]
Avoid copying some Quadrature rules in FESystem.
Marc Fehling [Sun, 25 Jul 2021 23:16:11 +0000 (17:16 -0600)]
Deprecated autopartition parameter.
Wolfgang Bangerth [Wed, 18 Aug 2021 16:55:10 +0000 (10:55 -0600)]
Merge pull request #12666 from drwells/fix-compilation-gcc-5.4
Fix compilation with GCC 5.4.
Daniel Arndt [Wed, 18 Aug 2021 15:17:57 +0000 (11:17 -0400)]
Merge pull request #12667 from zjiaqi2018/fix-matrixfree-typo
Fix documentation
Jiaqi Zhang [Wed, 18 Aug 2021 14:29:02 +0000 (14:29 +0000)]
fix documentation
David Wells [Wed, 18 Aug 2021 13:58:06 +0000 (09:58 -0400)]
Fix compilation with GCC 5.4.
Using constexpr here causes an internal compiler error when optimizations are
turned on.
Martin Kronbichler [Wed, 18 Aug 2021 08:41:10 +0000 (10:41 +0200)]
Merge pull request #12514 from simonsticko/mesh_classifier
Add class determining how cells/faces relate to a level set function
Simon Sticko [Mon, 28 Jun 2021 09:43:29 +0000 (11:43 +0200)]
Add class determining how cells/faces relate to a level set function
Add a class NonMatching::MeshClassifier that determines how the sign of
a level set function vary over the active cells/faces of a
triangulation. Each cell/face are associated with one of values of enum
LocationToLevelSet. If the level set is positive/negative over the
cell/face it is associated with LocationToLevelSet::inside/outside. If
the zero contour intersects the cell/face it is associated with
LocationToLevelSet::intersected.
David Wells [Tue, 17 Aug 2021 22:55:43 +0000 (18:55 -0400)]
Merge pull request #12661 from bangerth/doc-3
Update documentation of FE_Q constructor.
Wolfgang Bangerth [Mon, 16 Aug 2021 23:53:09 +0000 (17:53 -0600)]
Update documentation of FE_Q constructor.
Martin Kronbichler [Tue, 17 Aug 2021 12:21:36 +0000 (14:21 +0200)]
Merge pull request #12016 from konsim83/improve_conformity_tests
Improve conformity tests of 2D vector elements
Martin Kronbichler [Tue, 17 Aug 2021 10:22:47 +0000 (12:22 +0200)]
Merge pull request #12662 from bangerth/doc-4
Minor doc update.
Martin Kronbichler [Tue, 17 Aug 2021 10:01:44 +0000 (12:01 +0200)]
Merge pull request #12612 from drwells/fix-mass-diagonal
Make MassOperator's diagonals true diagonals, not lumped ones.
Wolfgang Bangerth [Tue, 17 Aug 2021 03:05:15 +0000 (21:05 -0600)]
Merge pull request #12596 from marcfehling/fix-load
Load: align dealii and p4est meshes before repartitioning.
Wolfgang Bangerth [Tue, 17 Aug 2021 00:14:00 +0000 (18:14 -0600)]
Minor doc update.
David Wells [Sat, 14 Aug 2021 21:39:02 +0000 (17:39 -0400)]
Explicitly use mass lumping in VectorTools::project_matrix_free().
This restores the behavior present before the last commit and its generally the
right choice.
David Wells [Sat, 31 Jul 2021 16:14:17 +0000 (12:14 -0400)]
Implement explicit mass lumping in MassOperator.
David Wells [Sat, 31 Jul 2021 14:31:56 +0000 (10:31 -0400)]
Modify a test to check the diagonal values (not lumped).
David Wells [Thu, 29 Jul 2021 21:40:18 +0000 (17:40 -0400)]
Make MassOperator's diagonals true diagonals, not lumped ones.
The previous implementation used row sums (i.e., mass lumping) instead of
computing the diagonal. This should be changed for two reasons:
1. It's not really the diagonal (and its inconsistent with LaplaceOperator).
2. Lumped mass matrices are only positive for either low-order elements (where
the basis functions are all positive) or very well-behaved elements (like
FE_Q). In particular, the values on the diagonal are either zero or negative
for TET10 if we use lumping, which isn't going to work.
Jean-Paul Pelteret [Mon, 16 Aug 2021 19:11:29 +0000 (21:11 +0200)]
Merge pull request #12658 from drwells/fix-issue-template
Make it an issue template.
Daniel Arndt [Mon, 16 Aug 2021 14:33:57 +0000 (10:33 -0400)]
Merge pull request #12656 from bangerth/increment
Peter Munch [Mon, 16 Aug 2021 14:33:11 +0000 (16:33 +0200)]
Merge pull request #12641 from peterrum/dataout_nonconti
Add assert to DataOut to force users to use block vectors for non-contiguous indexsets
Jean-Paul Pelteret [Mon, 16 Aug 2021 13:21:53 +0000 (15:21 +0200)]
Merge pull request #12587 from bangerth/explicit
Be more explicit about types and taking addresses.
Jean-Paul Pelteret [Mon, 16 Aug 2021 13:19:49 +0000 (15:19 +0200)]
Merge pull request #12622 from bangerth/doc
Add another example to the ScalarFunctionFromFunctionObject documentation.
David Wells [Mon, 16 Aug 2021 11:40:27 +0000 (07:40 -0400)]
Merge pull request #12657 from bangerth/types
Use std::size_t for index types.
David Wells [Mon, 16 Aug 2021 11:34:37 +0000 (07:34 -0400)]
Make it an issue template.
My bad, this doesn't make sense as a PR template.
David Wells [Mon, 16 Aug 2021 01:39:39 +0000 (21:39 -0400)]
Merge pull request #12655 from bangerth/doc-2
Improve error message.
Wolfgang Bangerth [Sun, 15 Aug 2021 23:47:04 +0000 (17:47 -0600)]
Use std::size_t for index types.
Wolfgang Bangerth [Sun, 15 Aug 2021 23:37:08 +0000 (17:37 -0600)]
Use 'auto' in one place.
Wolfgang Bangerth [Sun, 15 Aug 2021 23:12:46 +0000 (17:12 -0600)]
Change post- to pre-increment statements in foor loops (tests/).
Wolfgang Bangerth [Sun, 15 Aug 2021 23:12:40 +0000 (17:12 -0600)]
Change post- to pre-increment statements in foor loops (examples/).
Wolfgang Bangerth [Sun, 15 Aug 2021 23:12:34 +0000 (17:12 -0600)]
Change post- to pre-increment statements in foor loops (include/ and source/).
Wolfgang Bangerth [Sun, 15 Aug 2021 22:52:00 +0000 (16:52 -0600)]
Improve error message.
Wolfgang Bangerth [Sun, 15 Aug 2021 22:18:41 +0000 (16:18 -0600)]
Merge pull request #12643 from zjiaqi2018/changelog_feiv_AD
Changelog: FEInterfaceValues for AD
Wolfgang Bangerth [Sun, 15 Aug 2021 22:17:31 +0000 (16:17 -0600)]
Merge pull request #12652 from drwells/little-doc-fixes
Fix two small documentation issues.
Wolfgang Bangerth [Sun, 15 Aug 2021 22:15:46 +0000 (16:15 -0600)]
Merge pull request #12654 from drwells/add-pull-request-template
Add a pull request template.
David Wells [Sun, 15 Aug 2021 19:16:55 +0000 (15:16 -0400)]
Add a pull request template.
David Wells [Sun, 15 Aug 2021 17:11:06 +0000 (13:11 -0400)]
Fix two small documentation issues.
Its not worth opening two PRs.
Timo Heister [Sat, 14 Aug 2021 20:34:24 +0000 (16:34 -0400)]
Merge pull request #12644 from jppelteret/fe_interface_values_04
Categorise functions in FEInterfaceValuesViews
Jiaqi Zhang [Sat, 14 Aug 2021 20:32:09 +0000 (20:32 +0000)]
changelog for feiv AD
Jean-Paul Pelteret [Sat, 14 Aug 2021 08:43:14 +0000 (10:43 +0200)]
Reorganise sections and order
Peter Munch [Sat, 14 Aug 2021 07:29:40 +0000 (09:29 +0200)]
Merge pull request #12650 from konsim83/documentation/NewClangFormat
Fix clang-format version to 11.1 in coding guidelines
Konrad Simon [Fri, 13 Aug 2021 18:53:02 +0000 (20:53 +0200)]
fix clang-format version to 11.1
Simon, Dr. Konrad [Sun, 14 Mar 2021 21:01:17 +0000 (22:01 +0100)]
changed conformity tests
Co-authored-by: Martin Kronbichler <kronbichler@lnm.mw.tum.de>
David Wells [Fri, 13 Aug 2021 11:57:44 +0000 (07:57 -0400)]
Merge pull request #12648 from peterrum/fe_wedge_pyramid_degree
Add comments to wedge and pyramid FEs regarding degree
Peter Munch [Fri, 13 Aug 2021 05:33:24 +0000 (07:33 +0200)]
Merge pull request #12645 from tjhei/mg_transfer_warn
add Assert to MGTransfer*
Peter Munch [Thu, 12 Aug 2021 07:43:22 +0000 (09:43 +0200)]
Add comments to wedge and pyramid FEs regarding degree
Peter Munch [Thu, 12 Aug 2021 17:16:21 +0000 (19:16 +0200)]
Merge pull request #12649 from drwells/remove-old-namespace-comment
Remove documentation of the old Simplex namespace.
Timo Heister [Wed, 11 Aug 2021 20:22:21 +0000 (16:22 -0400)]
add Assert to MGTransfer*
The error message when you forget to call distribute_mg_dofs() is not
helpful. Instead, add an Assert.
David Wells [Thu, 12 Aug 2021 14:32:13 +0000 (10:32 -0400)]
Remove documentation of the old Simplex namespace.
Jean-Paul Pelteret [Wed, 11 Aug 2021 18:35:38 +0000 (20:35 +0200)]
Categorise functions in FEInterfaceValuesViews
Daniel Arndt [Wed, 11 Aug 2021 13:58:15 +0000 (09:58 -0400)]
Merge pull request #12642 from peterrum/fe_eval_pre
Replace some post-increments by pre-increments in fe_evaluation.h
Peter Munch [Wed, 11 Aug 2021 06:33:26 +0000 (08:33 +0200)]
Merge pull request #12638 from gfcas/integrate_difference
Integrate difference
Peter Munch [Wed, 11 Aug 2021 06:27:58 +0000 (08:27 +0200)]
Replace some post-increments by pre-increments in fe_evaluation.h
Jean-Paul Pelteret [Wed, 11 Aug 2021 04:47:12 +0000 (06:47 +0200)]
Merge pull request #12603 from zjiaqi2018/feinterface_AD
FEInterfaceValues for AD
Jean-Paul Pelteret [Wed, 11 Aug 2021 03:05:10 +0000 (05:05 +0200)]
Merge pull request #12636 from gfcas/step_40_timer
step-40 disable timer summary output
Jean-Paul Pelteret [Wed, 11 Aug 2021 02:51:15 +0000 (04:51 +0200)]
Improve some assertions
Peter Munch [Tue, 10 Aug 2021 19:18:02 +0000 (21:18 +0200)]
Add assert to DataOut to force users to use block vectors for non-contiguous indexsets
Peter Munch [Tue, 10 Aug 2021 18:13:48 +0000 (20:13 +0200)]
Merge pull request #12639 from gfcas/vector_tools_interpolate
Replace AssertDimension
Peter Munch [Tue, 10 Aug 2021 13:54:21 +0000 (15:54 +0200)]
Merge pull request #12625 from bergbauer/integrate_hessians_on_cells
Integrate hessians on cells
Daniel Arndt [Tue, 10 Aug 2021 13:51:57 +0000 (09:51 -0400)]
Merge pull request #12637 from gfcas/typos
Fabian Castelli [Tue, 10 Aug 2021 13:41:45 +0000 (15:41 +0200)]
Remove unused n_q_points variable
Fabian Castelli [Sun, 8 Aug 2021 09:12:46 +0000 (11:12 +0200)]
Range based quadrature loop
Martin Kronbichler [Tue, 10 Aug 2021 12:48:17 +0000 (14:48 +0200)]
Merge pull request #12635 from peterrum/gc_prolongate_and_add
Override MGTransferGlobalCoarsening::prolongate_and_add()
Fabian Castelli [Tue, 10 Aug 2021 12:43:22 +0000 (14:43 +0200)]
Update include/deal.II/numerics/vector_tools_interpolate.templates.h
Co-authored-by: David Wells <drwells@email.unc.edu>
Fabian Castelli [Sun, 8 Aug 2021 17:13:18 +0000 (19:13 +0200)]
Replace AssertDimension
Fabian Castelli [Sun, 8 Aug 2021 07:31:37 +0000 (09:31 +0200)]
Use AssertDimension macro
Fabian Castelli [Sun, 8 Aug 2021 07:18:51 +0000 (09:18 +0200)]
Mapping argument for do_integrate_difference
Fabian Castelli [Sun, 8 Aug 2021 17:45:20 +0000 (19:45 +0200)]
Another typo
Fabian Castelli [Sat, 7 Aug 2021 17:10:07 +0000 (19:10 +0200)]
Comma spacing
Fabian Castelli [Sat, 7 Aug 2021 06:36:14 +0000 (08:36 +0200)]
step-40 disable timer summary output
Maximilian Bergbauer [Thu, 5 Aug 2021 15:40:53 +0000 (17:40 +0200)]
Integrate hessians on cells
Peter Munch [Tue, 10 Aug 2021 09:14:18 +0000 (11:14 +0200)]
Override MGTransferGlobalCoarsening::prolongate_and_add()
Martin Kronbichler [Tue, 10 Aug 2021 09:11:12 +0000 (11:11 +0200)]
Merge pull request #12632 from peterrum/step-47
Step-47: unify code
Martin Kronbichler [Tue, 10 Aug 2021 09:10:31 +0000 (11:10 +0200)]
Merge pull request #12593 from bergbauer/evaluate_and_integrate_hessians
Evaluate and integrate hessians
Peter Munch [Sat, 7 Aug 2021 18:47:42 +0000 (20:47 +0200)]
Step-47: unify code
Jiaqi Zhang [Mon, 9 Aug 2021 19:47:40 +0000 (19:47 +0000)]
add get_function_*
Maximilian Bergbauer [Thu, 17 Jun 2021 11:50:11 +0000 (13:50 +0200)]
Evaluate and integrate hessians on faces
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.