Uses of Interface
org.apache.commons.math.ode.FirstOrderDifferentialEquations

Packages that use FirstOrderDifferentialEquations
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 FirstOrderDifferentialEquations in org.apache.commons.math.ode
 

Classes in org.apache.commons.math.ode that implement FirstOrderDifferentialEquations
 class FirstOrderConverter
          This class converts second order differential equations to first order ones.
 

Methods in org.apache.commons.math.ode with parameters of type FirstOrderDifferentialEquations
 double FirstOrderIntegrator.integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
          Integrate the differential equations up to the given time.
protected  void AbstractIntegrator.sanityChecks(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
          Perform some sanity checks on the integration parameters.
protected  void AbstractIntegrator.setEquations(FirstOrderDifferentialEquations equations)
          Set the differential equations.
 

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

Methods in org.apache.commons.math.ode.nonstiff with parameters of type FirstOrderDifferentialEquations
 double AdaptiveStepsizeIntegrator.initializeStep(FirstOrderDifferentialEquations equations, boolean forward, int order, double[] scale, double t0, double[] y0, double[] yDot0, double[] y1, double[] yDot1)
          Initialize the integration step.
 double AdamsMoultonIntegrator.integrate(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
          Integrate the differential equations up to the given time.
 double RungeKuttaIntegrator.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.
 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.
abstract  double AdaptiveStepsizeIntegrator.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.
protected  void AdaptiveStepsizeIntegrator.sanityChecks(FirstOrderDifferentialEquations equations, double t0, double[] y0, double t, double[] y)
          Perform some sanity checks on the integration parameters.
 



Copyright © 2003-2009 Apache Software Foundation. All Rights Reserved.