Example usage for org.apache.commons.math3.ode.nonstiff LutherIntegrator LutherIntegrator

List of usage examples for org.apache.commons.math3.ode.nonstiff LutherIntegrator LutherIntegrator

Introduction

In this page you can find the example usage for org.apache.commons.math3.ode.nonstiff LutherIntegrator LutherIntegrator.

Prototype

public LutherIntegrator(final double step) 

Source Link

Document

Simple constructor.

Usage

From source file:org.orekit.propagation.conversion.LutherIntegratorBuilder.java

/** {@inheritDoc} */
public AbstractIntegrator buildIntegrator(final Orbit orbit) {
    return new LutherIntegrator(step);
}

From source file:ummisco.gaml.extensions.maths.ode.utils.solver.LutherSolver.java

public LutherSolver(final double step, final GamaMap<String, IList<Double>> integrated_val) {
    super(step, new LutherIntegrator(step), integrated_val);
}