Manual: add a short description of how decision rules are stored at order ≥ 4

Closes: #1764
time-shift
Sébastien Villemot 2021-03-10 14:44:19 +01:00
parent c9eb6920c9
commit a2c5df956f
No known key found for this signature in database
GPG Key ID: 2CECE9350ECEBE4A
1 changed files with 14 additions and 0 deletions

View File

@ -4503,6 +4503,20 @@ The coefficients of the decision rules are stored as follows:
unfolded :math:`G_3` matrix, they must be multiplied by 3 when
computing the decision rules.
Higher-order approximation
--------------------------
Higher-order approximations are simply a generalization of what is done at
order 3.
The steady state is stored in ``oo_.dr.ys`` and the constant correction is
stored in ``oo_.dr.g_0``. The coefficient for orders 1, 2, 3, 4… are
respectively stored in ``oo_.dr.g_0``, ``oo_.dr.g_1``, ``oo_.dr.g_2``,
``oo_.dr.g_3``, ``oo_.dr.g_4``… The columns of those matrices correspond to
multidimensional indices of state variables, in such a way that symmetric
elements are never repeated (for more details, see the description of
``oo_.dr.g_3`` in the third-order case).
.. _estim: