Uses of Class
org.apache.commons.math.ode.events.EventException
-
Packages that use EventException 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. -
-
Uses of EventException in org.apache.commons.math.ode.events
Methods in org.apache.commons.math.ode.events that throw EventException Modifier and Type Method 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. -
Uses of EventException in org.apache.commons.math.ode.jacobians
Methods in org.apache.commons.math.ode.jacobians that throw EventException Modifier and Type Method 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.
-