HomeSort by relevance Sort by last modified time
    Searched defs:ode (Results 1 - 25 of 56) sorted by null

1 2 3

  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
ExtendedFirstOrderDifferentialEquations.java 17 package org.apache.commons.math.ode;
31 * set of equations correspond to the raw ode, and we add to this set
36 * complete ode implements this interface, the {@link FirstOrderIntegrator
55 * The main set of equations represent the first part of an ODE state.
FirstOrderIntegrator.java 18 package org.apache.commons.math.ode;
30 * @see org.apache.commons.math.ode.sampling.StepHandler
31 * @see org.apache.commons.math.ode.events.EventHandler
52 * org.apache.commons.math.ode.events.EventHandler} stops it at some point.
SecondOrderIntegrator.java 18 package org.apache.commons.math.ode;
20 import org.apache.commons.math.ode.DerivativeException;
DerivativeException.java 18 package org.apache.commons.math.ode;
FirstOrderDifferentialEquations.java 18 package org.apache.commons.math.ode;
IntegratorException.java 18 package org.apache.commons.math.ode;
SecondOrderDifferentialEquations.java 18 package org.apache.commons.math.ode;
20 import org.apache.commons.math.ode.DerivativeException;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
EventException.java 18 package org.apache.commons.math.ode.events;
EventHandler.java 18 package org.apache.commons.math.ode.events;
21 * during ODE integration.
23 * <p>Some events can be triggered at discrete times as an ODE problem
73 * org.apache.commons.math.ode.FirstOrderDifferentialEquations#computeDerivatives}
108 * org.apache.commons.math.ode.FirstOrderDifferentialEquations
116 * org.apache.commons.math.ode.sampling.StepHandler#handleStep handleStep}
130 * org.apache.commons.math.ode.sampling.StepHandler StepHandler} method {@link
131 * org.apache.commons.math.ode.sampling.StepHandler#handleStep(
132 * org.apache.commons.math.ode.sampling.StepInterpolator, boolean)
139 * org.apache.commons.math.ode.sampling.StepNormalizer StepNormalizer
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
ODEWithJacobians.java 18 package org.apache.commons.math.ode.jacobians;
20 import org.apache.commons.math.ode.DerivativeException;
21 import org.apache.commons.math.ode.FirstOrderDifferentialEquations;
42 /** Compute the partial derivatives of ODE with respect to state.
46 * @param dFdY placeholder array where to put the jacobian of the ODE with respect to the state vector
47 * @param dFdP placeholder array where to put the jacobian of the ODE with respect to the parameters
ParameterizedODE.java 18 package org.apache.commons.math.ode.jacobians;
20 import org.apache.commons.math.ode.FirstOrderDifferentialEquations;
StepHandlerWithJacobians.java 18 package org.apache.commons.math.ode.jacobians;
20 import org.apache.commons.math.ode.DerivativeException;
26 * <p>The ODE integrators compute the evolution of the state vector at
36 * org.apache.commons.math.ode.sampling.StepHandler classical step handler}
86 * {@link org.apache.commons.math.ode.ContinuousOutputModel
EventHandlerWithJacobians.java 18 package org.apache.commons.math.ode.jacobians;
20 import org.apache.commons.math.ode.events.EventException;
23 * during ODE integration.
25 * <p>Some events can be triggered at discrete times as an ODE problem
49 * org.apache.commons.math.ode.events.EventHandler classical event handler}
98 * org.apache.commons.math.ode.FirstOrderDifferentialEquations#computeDerivatives}
138 * org.apache.commons.math.ode.jacobians.ODEWithJacobians
146 * org.apache.commons.math.ode.jacobians.StepHandlerWithJacobians#handleStep(
161 * org.apache.commons.math.ode.jacobians.StepHandlerWithJacobians
163 * org.apache.commons.math.ode.jacobians.StepHandlerWithJacobians#handleStep
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/nonstiff/
ClassicalRungeKuttaIntegrator.java 18 package org.apache.commons.math.ode.nonstiff;
EulerIntegrator.java 18 package org.apache.commons.math.ode.nonstiff;
GillIntegrator.java 18 package org.apache.commons.math.ode.nonstiff;
MidpointIntegrator.java 18 package org.apache.commons.math.ode.nonstiff;
ThreeEighthesIntegrator.java 18 package org.apache.commons.math.ode.nonstiff;
AdamsIntegrator.java 18 package org.apache.commons.math.ode.nonstiff;
21 import org.apache.commons.math.ode.DerivativeException;
22 import org.apache.commons.math.ode.FirstOrderDifferentialEquations;
23 import org.apache.commons.math.ode.IntegratorException;
24 import org.apache.commons.math.ode.MultistepIntegrator;
EulerStepInterpolator.java 18 package org.apache.commons.math.ode.nonstiff;
20 import org.apache.commons.math.ode.DerivativeException;
21 import org.apache.commons.math.ode.sampling.StepInterpolator;
51 * org.apache.commons.math.ode.sampling.AbstractStepInterpolator#reinitialize}
MidpointStepInterpolator.java 18 package org.apache.commons.math.ode.nonstiff;
20 import org.apache.commons.math.ode.DerivativeException;
21 import org.apache.commons.math.ode.sampling.StepInterpolator;
53 * org.apache.commons.math.ode.sampling.AbstractStepInterpolator#reinitialize}
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/sampling/
FixedStepHandler.java 18 package org.apache.commons.math.ode.sampling;
20 import org.apache.commons.math.ode.DerivativeException;
StepHandler.java 18 package org.apache.commons.math.ode.sampling;
20 import org.apache.commons.math.ode.DerivativeException;
26 * <p>The ODE integrators compute the evolution of the state vector at
35 * @see org.apache.commons.math.ode.FirstOrderIntegrator
36 * @see org.apache.commons.math.ode.SecondOrderIntegrator
67 * {@link org.apache.commons.math.ode.ContinuousOutputModel
DummyStepHandler.java 18 package org.apache.commons.math.ode.sampling;
StepInterpolator.java 18 package org.apache.commons.math.ode.sampling;
22 import org.apache.commons.math.ode.DerivativeException;
25 * during an ODE integration.
27 * <p>The various ODE integrators provide objects implementing this
42 * @see org.apache.commons.math.ode.FirstOrderIntegrator
43 * @see org.apache.commons.math.ode.SecondOrderIntegrator

Completed in 238 milliseconds

1 2 3