#include <vtkRungeKutta2.h>
Inheritance diagram for vtkRungeKutta2:
This is a concrete sub-class of vtkInitialValueProblemSolver. It uses a 2nd order Runge-Kutta method to obtain the values of a set of functions at the next time step.
Definition at line 48 of file vtkRungeKutta2.h.
Public Types | |
typedef vtkInitialValueProblemSolver | Superclass |
Public Methods | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
virtual int | ComputeNextStep (float *xprev, float *xnext, float t, float &delT, float maxError, float &error) |
virtual int | ComputeNextStep (float *xprev, float *dxprev, float *xnext, float t, float &delT, float maxError, float &error) |
virtual int | ComputeNextStep (float *xprev, float *xnext, float t, float &delT, float &delTActual, float minStep, float maxStep, float maxError, float &error) |
virtual int | ComputeNextStep (float *xprev, float *dxprev, float *xnext, float t, float &delT, float &delTActual, float minStep, float maxStep, float maxError, float &error) |
Static Public Methods | |
int | IsTypeOf (const char *type) |
vtkRungeKutta2 * | SafeDownCast (vtkObject *o) |
vtkRungeKutta2 * | New () |
Protected Methods | |
vtkRungeKutta2 () | |
~vtkRungeKutta2 () |
|
Reimplemented from vtkInitialValueProblemSolver. Definition at line 51 of file vtkRungeKutta2.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. |
|
Construct a vtkRungeKutta2 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 63 of file vtkRungeKutta2.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 72 of file vtkRungeKutta2.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 82 of file vtkRungeKutta2.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. |