AdamsBashforthIntegrator.java

  1. /*
  2.  * Licensed to the Hipparchus project under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * The Hipparchus project licenses this file to You under the Apache License, Version 2.0
  6.  * (the "License"); you may not use this file except in compliance with
  7.  * the License.  You may obtain a copy of the License at
  8.  *
  9.  *      https://www.apache.org/licenses/LICENSE-2.0
  10.  *
  11.  * Unless required by applicable law or agreed to in writing, software
  12.  * distributed under the License is distributed on an "AS IS" BASIS,
  13.  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  14.  * See the License for the specific language governing permissions and
  15.  * limitations under the License.
  16.  */

  17. package org.hipparchus.ode.nonstiff;

  18. import org.hipparchus.exception.MathIllegalArgumentException;
  19. import org.hipparchus.linear.Array2DRowRealMatrix;
  20. import org.hipparchus.linear.RealMatrix;
  21. import org.hipparchus.ode.EquationsMapper;
  22. import org.hipparchus.ode.ODEStateAndDerivative;
  23. import org.hipparchus.ode.nonstiff.interpolators.AdamsStateInterpolator;
  24. import org.hipparchus.util.FastMath;


  25. /**
  26.  * This class implements explicit Adams-Bashforth integrators for Ordinary
  27.  * Differential Equations.
  28.  *
  29.  * <p>Adams-Bashforth methods (in fact due to Adams alone) are explicit
  30.  * multistep ODE solvers. This implementation is a variation of the classical
  31.  * one: it uses adaptive stepsize to implement error control, whereas
  32.  * classical implementations are fixed step size. The value of state vector
  33.  * at step n+1 is a simple combination of the value at step n and of the
  34.  * derivatives at steps n, n-1, n-2 ... Depending on the number k of previous
  35.  * steps one wants to use for computing the next value, different formulas
  36.  * are available:</p>
  37.  * <ul>
  38.  *   <li>k = 1: y<sub>n+1</sub> = y<sub>n</sub> + h y'<sub>n</sub></li>
  39.  *   <li>k = 2: y<sub>n+1</sub> = y<sub>n</sub> + h (3y'<sub>n</sub>-y'<sub>n-1</sub>)/2</li>
  40.  *   <li>k = 3: y<sub>n+1</sub> = y<sub>n</sub> + h (23y'<sub>n</sub>-16y'<sub>n-1</sub>+5y'<sub>n-2</sub>)/12</li>
  41.  *   <li>k = 4: y<sub>n+1</sub> = y<sub>n</sub> + h (55y'<sub>n</sub>-59y'<sub>n-1</sub>+37y'<sub>n-2</sub>-9y'<sub>n-3</sub>)/24</li>
  42.  *   <li>...</li>
  43.  * </ul>
  44.  *
  45.  * <p>A k-steps Adams-Bashforth method is of order k.</p>
  46.  *
  47.  * <p> There must be sufficient time for the {@link #setStarterIntegrator(org.hipparchus.ode.ODEIntegrator)
  48.  * starter integrator} to take several steps between the the last reset event, and the end
  49.  * of integration, otherwise an exception may be thrown during integration. The user can
  50.  * adjust the end date of integration, or the step size of the starter integrator to
  51.  * ensure a sufficient number of steps can be completed before the end of integration.
  52.  * </p>
  53.  *
  54.  * <p><strong>Implementation details</strong></p>
  55.  *
  56.  * <p>We define scaled derivatives s<sub>i</sub>(n) at step n as:
  57.  * \[
  58.  *   \left\{\begin{align}
  59.  *   s_1(n) &amp;= h y'_n \text{ for first derivative}\\
  60.  *   s_2(n) &amp;= \frac{h^2}{2} y_n'' \text{ for second derivative}\\
  61.  *   s_3(n) &amp;= \frac{h^3}{6} y_n''' \text{ for third derivative}\\
  62.  *   &amp;\cdots\\
  63.  *   s_k(n) &amp;= \frac{h^k}{k!} y_n^{(k)} \text{ for } k^\mathrm{th} \text{ derivative}
  64.  *   \end{align}\right.
  65.  * \]</p>
  66.  *
  67.  * <p>The definitions above use the classical representation with several previous first
  68.  * derivatives. Lets define
  69.  * \[
  70.  *   q_n = [ s_1(n-1) s_1(n-2) \ldots s_1(n-(k-1)) ]^T
  71.  * \]
  72.  * (we omit the k index in the notation for clarity). With these definitions,
  73.  * Adams-Bashforth methods can be written:</p>
  74.  * \[
  75.  *   \left\{\begin{align}
  76.  *   k = 1: &amp; y_{n+1} = y_n +               s_1(n) \\
  77.  *   k = 2: &amp; y_{n+1} = y_n + \frac{3}{2}   s_1(n) + [ \frac{-1}{2} ] q_n \\
  78.  *   k = 3: &amp; y_{n+1} = y_n + \frac{23}{12} s_1(n) + [ \frac{-16}{12} \frac{5}{12} ] q_n \\
  79.  *   k = 4: &amp; y_{n+1} = y_n + \frac{55}{24} s_1(n) + [ \frac{-59}{24} \frac{37}{24} \frac{-9}{24} ] q_n \\
  80.  *          &amp; \cdots
  81.  *   \end{align}\right.
  82.  * \]
  83.  *
  84.  * <p>Instead of using the classical representation with first derivatives only (y<sub>n</sub>,
  85.  * s<sub>1</sub>(n) and q<sub>n</sub>), our implementation uses the Nordsieck vector with
  86.  * higher degrees scaled derivatives all taken at the same step (y<sub>n</sub>, s<sub>1</sub>(n)
  87.  * and r<sub>n</sub>) where r<sub>n</sub> is defined as:
  88.  * \[
  89.  * r_n = [ s_2(n), s_3(n) \ldots s_k(n) ]^T
  90.  * \]
  91.  * (here again we omit the k index in the notation for clarity)
  92.  * </p>
  93.  *
  94.  * <p>Taylor series formulas show that for any index offset i, s<sub>1</sub>(n-i) can be
  95.  * computed from s<sub>1</sub>(n), s<sub>2</sub>(n) ... s<sub>k</sub>(n), the formula being exact
  96.  * for degree k polynomials.
  97.  * \[
  98.  * s_1(n-i) = s_1(n) + \sum_{j\gt 0} (j+1) (-i)^j s_{j+1}(n)
  99.  * \]
  100.  * The previous formula can be used with several values for i to compute the transform between
  101.  * classical representation and Nordsieck vector. The transform between r<sub>n</sub>
  102.  * and q<sub>n</sub> resulting from the Taylor series formulas above is:
  103.  * \[
  104.  * q_n = s_1(n) u + P r_n
  105.  * \]
  106.  * where u is the [ 1 1 ... 1 ]<sup>T</sup> vector and P is the (k-1)&times;(k-1) matrix built
  107.  * with the \((j+1) (-i)^j\) terms with i being the row number starting from 1 and j being
  108.  * the column number starting from 1:
  109.  * \[
  110.  *   P=\begin{bmatrix}
  111.  *   -2  &amp;  3 &amp;   -4 &amp;    5 &amp; \ldots \\
  112.  *   -4  &amp; 12 &amp;  -32 &amp;   80 &amp; \ldots \\
  113.  *   -6  &amp; 27 &amp; -108 &amp;  405 &amp; \ldots \\
  114.  *   -8  &amp; 48 &amp; -256 &amp; 1280 &amp; \ldots \\
  115.  *       &amp;    &amp;  \ldots\\
  116.  *    \end{bmatrix}
  117.  * \]
  118.  * </p>
  119.  *
  120.  * <p>Using the Nordsieck vector has several advantages:</p>
  121.  * <ul>
  122.  *   <li>it greatly simplifies step interpolation as the interpolator mainly applies
  123.  *   Taylor series formulas,</li>
  124.  *   <li>it simplifies step changes that occur when discrete events that truncate
  125.  *   the step are triggered,</li>
  126.  *   <li>it allows to extend the methods in order to support adaptive stepsize.</li>
  127.  * </ul>
  128.  *
  129.  * <p>The Nordsieck vector at step n+1 is computed from the Nordsieck vector at step n as follows:
  130.  * <ul>
  131.  *   <li>y<sub>n+1</sub> = y<sub>n</sub> + s<sub>1</sub>(n) + u<sup>T</sup> r<sub>n</sub></li>
  132.  *   <li>s<sub>1</sub>(n+1) = h f(t<sub>n+1</sub>, y<sub>n+1</sub>)</li>
  133.  *   <li>r<sub>n+1</sub> = (s<sub>1</sub>(n) - s<sub>1</sub>(n+1)) P<sup>-1</sup> u + P<sup>-1</sup> A P r<sub>n</sub></li>
  134.  * </ul>
  135.  * <p>where A is a rows shifting matrix (the lower left part is an identity matrix):</p>
  136.  * <pre>
  137.  *        [ 0 0   ...  0 0 | 0 ]
  138.  *        [ ---------------+---]
  139.  *        [ 1 0   ...  0 0 | 0 ]
  140.  *    A = [ 0 1   ...  0 0 | 0 ]
  141.  *        [       ...      | 0 ]
  142.  *        [ 0 0   ...  1 0 | 0 ]
  143.  *        [ 0 0   ...  0 1 | 0 ]
  144.  * </pre>
  145.  *
  146.  * <p>The P<sup>-1</sup>u vector and the P<sup>-1</sup> A P matrix do not depend on the state,
  147.  * they only depend on k and therefore are precomputed once for all.</p>
  148.  *
  149.  */
  150. public class AdamsBashforthIntegrator extends AdamsIntegrator {

  151.     /** Name of integration scheme. */
  152.     public static final String METHOD_NAME = "Adams-Bashforth";

  153.     /**
  154.      * Build an Adams-Bashforth integrator with the given order and step control parameters.
  155.      * @param nSteps number of steps of the method excluding the one being computed
  156.      * @param minStep minimal step (sign is irrelevant, regardless of
  157.      * integration direction, forward or backward), the last step can
  158.      * be smaller than this
  159.      * @param maxStep maximal step (sign is irrelevant, regardless of
  160.      * integration direction, forward or backward), the last step can
  161.      * be smaller than this
  162.      * @param scalAbsoluteTolerance allowed absolute error
  163.      * @param scalRelativeTolerance allowed relative error
  164.      * @exception MathIllegalArgumentException if order is 1 or less
  165.      */
  166.     public AdamsBashforthIntegrator(final int nSteps,
  167.                                     final double minStep, final double maxStep,
  168.                                     final double scalAbsoluteTolerance,
  169.                                     final double scalRelativeTolerance)
  170.         throws MathIllegalArgumentException {
  171.         super(METHOD_NAME, nSteps, nSteps, minStep, maxStep,
  172.               scalAbsoluteTolerance, scalRelativeTolerance);
  173.     }

  174.     /**
  175.      * Build an Adams-Bashforth integrator with the given order and step control parameters.
  176.      * @param nSteps number of steps of the method excluding the one being computed
  177.      * @param minStep minimal step (sign is irrelevant, regardless of
  178.      * integration direction, forward or backward), the last step can
  179.      * be smaller than this
  180.      * @param maxStep maximal step (sign is irrelevant, regardless of
  181.      * integration direction, forward or backward), the last step can
  182.      * be smaller than this
  183.      * @param vecAbsoluteTolerance allowed absolute error
  184.      * @param vecRelativeTolerance allowed relative error
  185.      * @exception IllegalArgumentException if order is 1 or less
  186.      */
  187.     public AdamsBashforthIntegrator(final int nSteps,
  188.                                     final double minStep, final double maxStep,
  189.                                     final double[] vecAbsoluteTolerance,
  190.                                     final double[] vecRelativeTolerance)
  191.         throws IllegalArgumentException {
  192.         super(METHOD_NAME, nSteps, nSteps, minStep, maxStep,
  193.               vecAbsoluteTolerance, vecRelativeTolerance);
  194.     }

  195.     /** {@inheritDoc} */
  196.     @Override
  197.     protected double errorEstimation(final double[] previousState, final double predictedTime,
  198.                                      final double[] predictedState,
  199.                                      final double[] predictedScaled,
  200.                                      final RealMatrix predictedNordsieck) {

  201.         final StepsizeHelper helper = getStepSizeHelper();
  202.         double error = 0;
  203.         for (int i = 0; i < helper.getMainSetDimension(); ++i) {
  204.             final double tol = helper.getTolerance(i, FastMath.abs(predictedState[i]));

  205.             // apply Taylor formula from high order to low order,
  206.             // for the sake of numerical accuracy
  207.             double variation = 0;
  208.             int sign = predictedNordsieck.getRowDimension() % 2 == 0 ? -1 : 1;
  209.             for (int k = predictedNordsieck.getRowDimension() - 1; k >= 0; --k) {
  210.                 variation += sign * predictedNordsieck.getEntry(k, i);
  211.                 sign       = -sign;
  212.             }
  213.             variation -= predictedScaled[i];

  214.             final double ratio  = (predictedState[i] - previousState[i] + variation) / tol;
  215.             error              += ratio * ratio;

  216.         }

  217.         return FastMath.sqrt(error / helper.getMainSetDimension());

  218.     }

  219.     /** {@inheritDoc} */
  220.     @Override
  221.     protected AdamsStateInterpolator finalizeStep(final double stepSize, final double[] predictedState,
  222.                                                   final double[] predictedScaled, final Array2DRowRealMatrix predictedNordsieck,
  223.                                                   final boolean isForward,
  224.                                                   final ODEStateAndDerivative globalPreviousState,
  225.                                                   final ODEStateAndDerivative globalCurrentState,
  226.                                                   final EquationsMapper equationsMapper) {
  227.         return new AdamsStateInterpolator(getStepSize(), globalCurrentState,
  228.                                           predictedScaled, predictedNordsieck, isForward,
  229.                                           getStepStart(), globalCurrentState, equationsMapper);
  230.     }

  231. }