Package | Description |
---|---|
org.apache.commons.math.ode.events |
This package provides classes to handle discrete events occurring during
Ordinary Differential Equations integration.
|
org.apache.commons.math.ode.jacobians |
This package was intended to solve Ordinary Differential Equations problems
and also compute derivatives of the solution.
|
Modifier and Type | Method and Description |
---|---|
boolean |
EventState.evaluateStep(StepInterpolator interpolator)
Evaluate the impact of the proposed step on the event handler.
|
int |
EventHandler.eventOccurred(double t,
double[] y,
boolean increasing)
Handle an event and choose what to do next.
|
double |
EventHandler.g(double t,
double[] y)
Compute the value of the switching function.
|
void |
EventState.reinitializeBegin(StepInterpolator interpolator)
Reinitialize the beginning of the step.
|
boolean |
EventState.reset(double t,
double[] y)
Let the event handler reset the state if it wants.
|
void |
EventHandler.resetState(double t,
double[] y)
Reset the state prior to continue the integration.
|
void |
EventState.stepAccepted(double t,
double[] y)
Acknowledge the fact the step has been accepted by the integrator.
|
Modifier and Type | Method and Description |
---|---|
int |
EventHandlerWithJacobians.eventOccurred(double t,
double[] y,
double[][] dydy0,
double[][] dydp,
boolean increasing)
Deprecated.
Handle an event and choose what to do next.
|
double |
EventHandlerWithJacobians.g(double t,
double[] y,
double[][] dydy0,
double[][] dydp)
Deprecated.
Compute the value of the switching function.
|
void |
EventHandlerWithJacobians.resetState(double t,
double[] y,
double[][] dydy0,
double[][] dydp)
Deprecated.
Reset the state prior to continue the integration.
|
Copyright © 2003–2018. All rights reserved.