DormandPrince54FieldIntegratorBuilder.java

  1. /* Copyright 2002-2025 CS GROUP
  2.  * Licensed to CS GROUP (CS) under one or more
  3.  * contributor license agreements.  See the NOTICE file distributed with
  4.  * this work for additional information regarding copyright ownership.
  5.  * CS 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.  *   http://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.orekit.propagation.conversion;

  18. import org.hipparchus.CalculusFieldElement;
  19. import org.hipparchus.Field;
  20. import org.hipparchus.ode.nonstiff.DormandPrince54FieldIntegrator;
  21. import org.orekit.propagation.ToleranceProvider;

  22. /**
  23.  * Builder for DormandPrince54FieldIntegrator.
  24.  *
  25.  * @author Pascal Parraud
  26.  * @author Vincent Cucchietti
  27.  * @since 12.0
  28.  * @param <T> type of the field elements
  29.  */
  30. public class DormandPrince54FieldIntegratorBuilder<T extends CalculusFieldElement<T>>
  31.         extends AbstractVariableStepFieldIntegratorBuilder<T, DormandPrince54FieldIntegrator<T>>
  32.         implements FieldExplicitRungeKuttaIntegratorBuilder<T> {

  33.     /**
  34.      * Build a new instance using default integration tolerances.
  35.      *
  36.      * @param minStep minimum step size (s)
  37.      * @param maxStep maximum step size (s)
  38.      * @param dP position error (m)
  39.      *
  40.      * @see DormandPrince54FieldIntegrator
  41.      */
  42.     public DormandPrince54FieldIntegratorBuilder(final double minStep, final double maxStep, final double dP) {
  43.         super(minStep, maxStep, getDefaultToleranceProvider(dP));
  44.     }

  45.     /**
  46.      * Build a new instance.
  47.      *
  48.      * @param minStep minimum step size (s)
  49.      * @param maxStep maximum step size (s)
  50.      * @param toleranceProvider integration tolerance provider
  51.      * @since 13.0
  52.      * @see DormandPrince54FieldIntegrator
  53.      */
  54.     public DormandPrince54FieldIntegratorBuilder(final double minStep, final double maxStep,
  55.                                                  final ToleranceProvider toleranceProvider) {
  56.         super(minStep, maxStep, toleranceProvider);
  57.     }

  58.     /** {@inheritDoc} */
  59.     @Override
  60.     protected DormandPrince54FieldIntegrator<T> buildIntegrator(final Field<T> field, final double[][] tolerances) {
  61.         return new DormandPrince54FieldIntegrator<>(field, getMinStep(), getMaxStep(), tolerances[0], tolerances[1]);
  62.     }

  63.     /** {@inheritDoc} */
  64.     @Override
  65.     public DormandPrince54IntegratorBuilder toODEIntegratorBuilder() {
  66.         return new DormandPrince54IntegratorBuilder(getMinStep(), getMaxStep(), getToleranceProvider());
  67.     }
  68. }