The staggered approach based on the alternate minimization for phase-field fracture simulations.
This repository is created mainly as a baseline for comparing its convergence behavior with various phase-field monolithic solvers, such as the limited-memory BFGS (L-BFGS) and the L-BFGS-B schemes. The staggered approach has the following features:
- At each load (pseudo-time) step, the displacement sub-problem (nonlinear) and the phase-field sub-problem are solved alternatively.
- Several options of convergence criteria are provided, including the single-pass criteria (not practical), the energy-based criteria, and the residual-based criteria.
- The damage irreversibility is enforced using the history variable (maximum positive strain energy) approach.
The repository contains the following content:
- the source code of the alternate minimization method for the phase-field staggered approach.
- the input files for several commonly used 2D phase-field fracture simulations.
The L-BFGS finite element procedure is implemented in deal.II (with the develop branch as Aug. 17th, 2024), which is an open source finite element library. In order to use the code (main.cc) provided here, deal.II should be configured with MPI and at least with the interfaces to BLAS, LAPACK, Threading Building Blocks (TBB), and UMFPACK. For optional interfaces to other software packages, see https://www.dealii.org/developer/readme.html. Once the deal.II library is compiled, for instance, to "~/dealii-dev/bin/", follow the steps listed below:
- cd SourceCode
- cmake -DDEAL_II_DIR=~/dealii-dev/bin/ .
- make debug or make release
- make
- Go into one of the examples folders.
- For instance a 2D test case: go into simple_shear/
- Run via ./../SourceCode/main 2
TBD