Fixed-step 2nd order Backward Differentiation Formula (BDF).
Implicit linear multistep method using the previous two solution points. A-stable,
making it excellent for stiff problems. Uses DIRK3 startup method for the first steps.
Fixed-step 3rd order Backward Differentiation Formula (BDF).
Implicit linear multistep method using the previous three solution points. A(alpha)-stable
with \(\alpha \approx 86^\circ\), providing excellent stability for stiff problems.
Uses DIRK3 startup method for initial steps.
Fixed-step 4th order Backward Differentiation Formula (BDF).
Implicit linear multistep method using the previous four solution points. A(alpha)-stable
with \(\alpha \approx 73^\circ\). Good for stiff problems requiring moderate-to-high
accuracy. Uses DIRK3 startup method for initial steps.
Fixed-step 5th order Backward Differentiation Formula (BDF).
Implicit linear multistep method using the previous five solution points. A(alpha)-stable
with \(\alpha \approx 51^\circ\). Suitable for stiff problems requiring high accuracy,
but with reduced stability angle. Uses DIRK3 startup method for initial steps.
Fixed-step 6th order Backward Differentiation Formula (BDF).
Implicit linear multistep method using the previous six solution points. Not A-stable;
stability region does not contain the entire left half-plane (stability angle only
\(\approx 18^\circ\)), severely limiting its use for stiff problems. Uses DIRK3
startup method for initial steps.
Very smooth, mildly stiff problems: Only when stiffness is minimal
High accuracy priority: When 6th order accuracy justifies poor stability
Specialized applications: Rarely used in practice
Warning: Very limited stability. Generally not recommended for stiff problems.
For most applications requiring 6th order accuracy, use explicit methods like RKV65
on non-stiff problems, or lower-order BDFs with smaller timesteps on stiff problems.