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 booleanEventState. evaluateStep(StepInterpolator interpolator)Evaluate the impact of the proposed step on the event handler.intEventHandler. eventOccurred(double t, double[] y, boolean increasing)Handle an event and choose what to do next.doubleEventHandler. g(double t, double[] y)Compute the value of the switching function.voidEventState. reinitializeBegin(StepInterpolator interpolator)Reinitialize the beginning of the step.booleanEventState. reset(double t, double[] y)Let the event handler reset the state if it wants.voidEventHandler. resetState(double t, double[] y)Reset the state prior to continue the integration.voidEventState. 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 intEventHandlerWithJacobians. eventOccurred(double t, double[] y, double[][] dydy0, double[][] dydp, boolean increasing)Deprecated.Handle an event and choose what to do next.doubleEventHandlerWithJacobians. g(double t, double[] y, double[][] dydy0, double[][] dydp)Deprecated.Compute the value of the switching function.voidEventHandlerWithJacobians. resetState(double t, double[] y, double[][] dydy0, double[][] dydp)Deprecated.Reset the state prior to continue the integration. 
 -