Time integration advances the solution of the semi-discrete system obtained after spatial discretization of the governing equations. In finite volume form, the governing equations can be written as: where is the vector of conserved variables and represents the spetial residual including non-linear terms such as convective fluxes, viscous fluxes, and source terms.Documentation Index
Fetch the complete documentation index at: https://compflowlab.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Available Time Integration Schemes
In CompFlowLab, the time integration scheme can be specified bytime_scheme in input file. Following are some of the available time integration schemes.
FDF: Forward Difference Euler (Explicit)
A first-order explicit method:
- First-order accurate
- Simple and inexpensive
- Strongly limited by CFL condition
SSPRK2: Strong Stability Preserving Runge–Kutta 2 (Explicit)
A second-order explicit method:
- Second-order accurate
- Improved stability over Forward Euler
- Suitable for moderate accuracy requirements
SSPRK3: Strong Stability Preserving Runge–Kutta 3 (Explicit)
A second-order explicit method:
- Third-order accurate
- Widely used in high-resolution CFD
- Good balance of accuracy and stability
BDF: Backward Difference Euler (Implicit)
A first-order implicit method:
- First-order accurate
- Unconditionally stable for many problems
- Requires solving a nonlinear system each time step
The BDF method uses finite differences to compute the Jacobian in reacting flow cases, which might make it very stiff and hard to converge if the time step is too large.