FIRK tableau registry

FIRK_TABLEAU_REGISTRY exposes fully implicit Runge–Kutta schemes as FIRKTableau instances. Aliases in the registry integrate with get_algorithm_step() so callers can select Gauss–Legendre and Radau IIA families without repeating coefficients.

cubie.integrators.algorithms.FIRK_TABLEAU_REGISTRY Dict[str, FIRKTableau]

dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object’s

(key, value) pairs

dict(iterable) -> new dictionary initialized as if via:

d = {} for k, v in iterable:

d[k] = v

dict(**kwargs) -> new dictionary initialized with the name=value pairs

in the keyword argument list. For example: dict(one=1, two=2)

The FIRKStep factory defaults to the two-stage fourth-order Gauss–Legendre pair ("firk_gauss_legendre_2").

Available aliases

Named fully implicit Runge–Kutta tableaus

Key

Description

Reference

"firk_gauss_legendre_2"

Two-stage fourth-order Gauss–Legendre scheme with symplectic structure.

[HairerLubichWanner2006FIRK]

"radau_iia_5" and "radau"

Three-stage fifth-order Radau IIA method with stiff accuracy.

[HairerWanner1996FIRK]

Tableau container

class cubie.integrators.algorithms.generic_firk_tableaus.FIRKTableau(a: Tuple[Tuple[float, ...], ...], b: Tuple[float, ...], c: Tuple[float, ...], order: int, b_hat: Tuple[float, ...] | None = None)[source]

Bases: ButcherTableau

Coefficient tableau describing a fully implicit RK scheme.

References

[HairerLubichWanner2006FIRK]

E. Hairer, C. Lubich, and G. Wanner. Geometric Numerical Integration (2nd ed.). Springer, 2006.

[HairerWanner1996FIRK]

E. Hairer and G. Wanner. Solving Ordinary Differential Equations II: Stiff and Differential-Algebraic Problems (2nd ed.). Springer, 1996.