Wolfgang Bangerth
Wolfgang Bangerth
I'm rewriting `DoFTools::count_dofs_per_{component,block}` for a separate PR, and I'm finding that `DoFTools::count_dofs_per_block()` can't possibly be doing what we think it's doing in the hp case. Specifically, the code currently looks...
I'm confused about these objects in `FiniteElementBase` and their accessor functions: ``` /** * Number of unique quads. If all quads have the same type, the value is * one;...
`ReferenceCell` is our way forward, and we should move the documentation we currently have in `GeometryInfo` to its new home. There are two things that need to happen: * Move...
I verified that it enables the same number of tests as before (990 on my machine). /rebuild
In working on #4889, I realized something that had previously occurred to me: When we create the various plugin systems in the constructor of `Simulator`, we create some of the...
Now that we can build the latex manual via cmake, we no longer need that logic in `doc/Makefile`. /rebuild
#4456 reshuffles much of the code in the gravity postprocessor. Another relatively low-hanging fruit pertains to the fact that process 0 currently computes a good bit of reference values (the...
#1563 and #1628 add a lot of duplicated code where we (potentially) convert from the default Cartesian coordinate system to another system, and then pass that converted point to a...
We have a lot of places of the form ``` typename DoFHandler::active_cell_iterator cell = mesh_deformation_dof_handler.begin_active(), endc= mesh_deformation_dof_handler.end(); for (; cell!=endc; ++cell) ... ``` But using C++11 features, we can more...
There are ~46 occurrences of `\note` in the latex sources, which in the conversion to sphinx were all converted as ``` ``` That is, not only is the markup wrong,...