Wolfgang Bangerth
Wolfgang Bangerth
In both `solver.cc` and `stokes_matrix_free.cc`, we invoke the `signals.post_stokes_solver` signal *but then continue on doing things that clean up the solution variable. This looks as follows: ``` //signal successful solver...
Some digging of what it currently does will be necessary, but the goal would be to have a chunk that can also be located over the poles, for example. Apparently...
The drop-down menus at the top of https://aspect.geodynamics.org/ still link to the PDF version of the manual, but not to the HTML version -- but you can get there with...
The deal.II dmg packages for Mac no longer bundle astyle, and so ASPECT users have to install the package by hand. We ought to document this somewhere. Here are the...
I must be missing something fundamental about how to make `tf::Executor::async()` work in actual practice. In the following little program, I'm telling the executor that it can use 2 threads,...
This program uses the following virtual function: ``` template class ComputeMultiplier : public DataPostprocessor { private: double p; public: ComputeMultiplier (double pe); virtual void compute_derived_quantities_scalar ( const std::vector< double >...
This might need @tamiko 's input: I've gotten tired of configuring and compiling each code gallery program individually, so I tried to set up this `CMakeLists.txt` file in the top...
This program still uses the old way to select which cells to produce output on: ``` template class FilteredDataOut : public DataOut { public: FilteredDataOut (const unsigned int subdomain_id) :...
Following #4080, the logic for omitting certain particle properties looks like this (and it was this way before #4080, the code was just differently organized): ``` bool exclude_property = false;...