aspect
aspect copied to clipboard
A parallel, extensible finite element code to simulate convection in both 2D and 3D models.
To the surprise of absolutely nobody who might have followed https://github.com/dealii/dealii/issues/18071, I thought it might be a nice idea to see how much it would take to also convert ASPECT...
In `structured_data.cc`, we do ``` char *filename = static_cast(std::malloc (maxsize * sizeof(char))); int ret = std::snprintf (filename, maxsize, filename_and_path.c_str(), boundary_name.c_str(), filenumber); AssertThrow(ret >= 0, ExcMessage("Invalid string placeholder in filename detected."));...
For a diking algorithm, I would like to be able to only add dilation in a certain direction. I personally think it is best to be general with this and...
This PR adds a coordinate system option to `source/particle/property/function.cc`. It follows from the starter pack issue #5626. I attempted to mimic @gassmoeller's examples in #5626, but ```bash ctest -R particle_property_multiple_functions_spherical_coordinates...
Implement a cookbook which demonstrates reactive fluid transport in a 2D subduction model. The cookbook will have multiple different setups: - [x] A cookbook which keeps the temperature, and all...
This PR updates the continental extension cookbook to use a number of features that improve the (1) performance (speed) and accuracy of the simulation and (2) make the PRM file...
This cookbook demonstrates the role of pre-existing faults in localizing strain during continental convergence using strain weakening and plasticity. * [X] I have read the guidelines in our [CONTRIBUTING.md](../blob/main/CONTRIBUTING.md) document....
This cookbook provides an example for how to combine surface loading, nonlinear lithospheric and asthenospheric deformation, and two-phase reactive melt transport using the reactive fluid transport material model. * [X]...
In global models, plastic strain weakening is often unreliable at low resolution due to poor strain localization, which leads to an underestimation of lithospheric weakening. To initiate plate-like behavior, models...
As discussed in #6538, we should deprecate `SimulatorAccess::get_end_time()` in favor of `this->get_parameters().end_time`.