#include <vtkRungeKutta4.h>
Inheritance diagram for vtkRungeKutta4:
This is a concrete sub-class of vtkInitialValueProblemSolver. It uses a 4th order Runge-Kutta method to obtain the values of a set of functions at the next time step.
Definition at line 51 of file vtkRungeKutta4.h.
Public Types | |
typedef vtkInitialValueProblemSolver | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
virtual void | PrintSelf (ostream &os, vtkIndent indent) |
virtual int | ComputeNextStep (double *xprev, double *xnext, double t, double &delT, double maxError, double &error) |
virtual int | ComputeNextStep (double *xprev, double *dxprev, double *xnext, double t, double &delT, double maxError, double &error) |
virtual int | ComputeNextStep (double *xprev, double *xnext, double t, double &delT, double &delTActual, double minStep, double maxStep, double maxError, double &error) |
virtual int | ComputeNextStep (double *xprev, double *dxprev, double *xnext, double t, double &delT, double &delTActual, double minStep, double maxStep, double maxError, double &error) |
Static Public Member Functions | |
int | IsTypeOf (const char *type) |
vtkRungeKutta4 * | SafeDownCast (vtkObject *o) |
vtkRungeKutta4 * | New () |
Protected Member Functions | |
vtkRungeKutta4 () | |
~vtkRungeKutta4 () | |
virtual void | Initialize () |
Protected Attributes | |
double * | NextDerivs [3] |
|
Reimplemented from vtkInitialValueProblemSolver. Definition at line 54 of file vtkRungeKutta4.h. |
|
|
|
|
|
Reimplemented from vtkInitialValueProblemSolver. |
|
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkInitialValueProblemSolver. |
|
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h. Reimplemented from vtkInitialValueProblemSolver. |
|
Reimplemented from vtkInitialValueProblemSolver. |
|
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes. Reimplemented from vtkInitialValueProblemSolver. |
|
Construct a vtkRungeKutta4 with no initial FunctionSet. Reimplemented from vtkObject. |
|
Given initial values, xprev , initial time, t and a requested time interval, delT calculate values of x at t+delT (xnext). delTActual is always equal to delT. Since this class can not provide an estimate for the error error is set to 0. maxStep, minStep and maxError are unused. This method returns an error code representing the nature of the failure: OutOfDomain = 1, NotInitialized = 2, UnexpectedValue = 3 Reimplemented from vtkInitialValueProblemSolver. Definition at line 68 of file vtkRungeKutta4.h. References vtkInitialValueProblemSolver::ComputeNextStep(). |
|
Given initial values, xprev , initial time, t and a requested time interval, delT calculate values of x at t+delT (xnext). delTActual is always equal to delT. Since this class can not provide an estimate for the error error is set to 0. maxStep, minStep and maxError are unused. This method returns an error code representing the nature of the failure: OutOfDomain = 1, NotInitialized = 2, UnexpectedValue = 3 Reimplemented from vtkInitialValueProblemSolver. Definition at line 77 of file vtkRungeKutta4.h. References vtkInitialValueProblemSolver::ComputeNextStep(). |
|
Given initial values, xprev , initial time, t and a requested time interval, delT calculate values of x at t+delT (xnext). delTActual is always equal to delT. Since this class can not provide an estimate for the error error is set to 0. maxStep, minStep and maxError are unused. This method returns an error code representing the nature of the failure: OutOfDomain = 1, NotInitialized = 2, UnexpectedValue = 3 Reimplemented from vtkInitialValueProblemSolver. Definition at line 87 of file vtkRungeKutta4.h. References vtkInitialValueProblemSolver::ComputeNextStep(). |
|
Given initial values, xprev , initial time, t and a requested time interval, delT calculate values of x at t+delT (xnext). delTActual is always equal to delT. Since this class can not provide an estimate for the error error is set to 0. maxStep, minStep and maxError are unused. This method returns an error code representing the nature of the failure: OutOfDomain = 1, NotInitialized = 2, UnexpectedValue = 3 Implements vtkInitialValueProblemSolver. |
|
Reimplemented from vtkInitialValueProblemSolver. |
|
Definition at line 107 of file vtkRungeKutta4.h. |