|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectrkm.ode.ODE
public abstract class ODE
Information about an ODE and its solutions. This class also keeps track of all available subclasses.
Constructor Summary | |
---|---|
ODE()
|
Method Summary | |
---|---|
abstract double |
evalDeriv(double x,
double y)
Evaluate this ODE at point (x,y). |
abstract double |
evalSol(double x0,
double y0,
double x)
Evaluate the solution through (x0,y0) at point x. |
static ODE[] |
getAvailableODEs()
|
double |
getParameter()
|
abstract java.lang.String |
getSolutionDescription()
|
abstract java.awt.geom.Point2D |
getStartPointSuggestion()
|
abstract double |
getStepSizeSuggestion()
|
abstract boolean |
isNearDiscont(double x0,
double y0,
double x,
double eps)
|
abstract boolean |
isValidInterval(double x0,
double y0,
double width)
|
abstract boolean |
requiresParameter()
|
void |
setParameter(double p)
Set the parameter to use. |
abstract java.lang.String |
toString()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public ODE()
Method Detail |
---|
public abstract boolean requiresParameter()
public double getParameter()
public void setParameter(double p)
public abstract double evalDeriv(double x, double y)
public abstract double evalSol(double x0, double y0, double x)
public abstract boolean isNearDiscont(double x0, double y0, double x, double eps)
public abstract boolean isValidInterval(double x0, double y0, double width)
public abstract java.awt.geom.Point2D getStartPointSuggestion()
public abstract double getStepSizeSuggestion()
public abstract java.lang.String toString()
toString
in class java.lang.Object
public abstract java.lang.String getSolutionDescription()
public static ODE[] getAvailableODEs()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |