Uses of Class
org.apache.commons.math.ode.events.EventException

Packages that use EventException
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 provides classes 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
 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(double tStart, double[] yStart)
          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
 int EventHandlerWithJacobians.eventOccurred(double t, double[] y, double[][] dydy0, double[][] dydp, boolean increasing)
          Handle an event and choose what to do next.
 double EventHandlerWithJacobians.g(double t, double[] y, double[][] dydy0, double[][] dydp)
          Compute the value of the switching function.
 void EventHandlerWithJacobians.resetState(double t, double[] y, double[][] dydy0, double[][] dydp)
          Reset the state prior to continue the integration.
 



Copyright © 2003-2010 The Apache Software Foundation. All Rights Reserved.