Uses of Class
org.apache.commons.math.ode.IntegratorException

Packages that use IntegratorException
org.apache.commons.math.ode This package provides classes to solve Ordinary Differential Equations problems. 
org.apache.commons.math.ode.nonstiff This package provides classes to solve non-stiff Ordinary Differential Equations problems. 
 

Uses of IntegratorException in org.apache.commons.math.ode
 

Methods in org.apache.commons.math.ode that throw IntegratorException
protected  double AbstractIntegrator.acceptStep(AbstractStepInterpolator interpolator, double[] y, double[] yDot, double tEnd)
          Accept a step, triggering events and step handlers.
 double FirstOrderIntegrator.integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
          Integrate the differential equations up to the given time.
 void SecondOrderIntegrator.integrate(SecondOrderDifferentialEquations equations, double t0, double[] y0, double[] yDot0, double t, double[] y, double[] yDot)
          Integrate the differential equations up to the given time
protected  void AbstractIntegrator.sanityChecks(FirstOrderDifferentialEquations ode, double t0, double[] y0, double t, double[] y)
          Perform some sanity checks on the integration parameters.
protected  void MultistepIntegrator.start(double t0, double[] y0, double t)
          Start the integration.
 

Uses of IntegratorException in org.apache.commons.math.ode.nonstiff
 

Methods in org.apache.commons.math.ode.nonstiff that throw IntegratorException
protected  double AdaptiveStepsizeIntegrator.filterStep(double h, boolean forward, boolean acceptSmall)
          Filter the integration step.
 double RungeKuttaIntegrator.integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
          Integrate the differential equations up to the given time.
 double GraggBulirschStoerIntegrator.integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
          Integrate the differential equations up to the given time.
 double EmbeddedRungeKuttaIntegrator.integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
          Integrate the differential equations up to the given time.
 double AdamsBashforthIntegrator.integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
          Integrate the differential equations up to the given time.
abstract  double AdamsIntegrator.integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
          Integrate the differential equations up to the given time.
 double AdamsMoultonIntegrator.integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
          Integrate the differential equations up to the given time.
abstract  double AdaptiveStepsizeIntegrator.integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
          Integrate the differential equations up to the given time.
protected  void AdaptiveStepsizeIntegrator.sanityChecks(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
          Perform some sanity checks on the integration parameters.
 



Copyright © 2003-2011 The Apache Software Foundation. All Rights Reserved.