ActiViz .NET  5.8.0
Public Member Functions | Static Public Member Functions | Public Attributes | Static Public Attributes | Protected Member Functions | Private Member Functions | Static Private Member Functions
Kitware.VTK.vtkRungeKutta2 Class Reference

vtkRungeKutta2 - Integrate an initial value problem using 2nd order Runge-Kutta method. More...

Inheritance diagram for Kitware.VTK.vtkRungeKutta2:
[legend]
Collaboration diagram for Kitware.VTK.vtkRungeKutta2:
[legend]

List of all members.

Public Member Functions

 vtkRungeKutta2 (IntPtr rawCppThis, bool callDisposalMethod, bool strong)
 Automatically generated constructor - called from generated code. DO NOT call directly.
 vtkRungeKutta2 ()
 Construct a vtkRungeKutta2 with no initial FunctionSet.
override int ComputeNextStep (IntPtr xprev, IntPtr xnext, double t, ref double delT, double maxError, ref double error)
 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.
override int ComputeNextStep (IntPtr xprev, IntPtr dxprev, IntPtr xnext, double t, ref double delT, double maxError, ref double error)
 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.
override int ComputeNextStep (IntPtr xprev, IntPtr xnext, double t, ref double delT, ref double delTActual, double minStep, double maxStep, double maxError, ref double error)
 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.
override int ComputeNextStep (IntPtr xprev, IntPtr dxprev, IntPtr xnext, double t, ref double delT, ref double delTActual, double minStep, double maxStep, double maxError, ref double error)
 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.
override int IsA (string type)
 Undocumented Block.
new vtkRungeKutta2 NewInstance ()
 Undocumented Block.

Static Public Member Functions

static new vtkRungeKutta2 New ()
 Construct a vtkRungeKutta2 with no initial FunctionSet.
static new int IsTypeOf (string type)
 Undocumented Block.
static new vtkRungeKutta2 SafeDownCast (vtkObjectBase o)
 Undocumented Block.

Public Attributes

new const string MRFullTypeName = "Kitware.VTK.vtkRungeKutta2"
 Automatically generated type registration mechanics.

Static Public Attributes

static new readonly string MRClassNameKey = "14vtkRungeKutta2"
 Automatically generated type registration mechanics.

Protected Member Functions

override void Dispose (bool disposing)
 Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Private Member Functions

static internal IntPtr vtkRungeKutta2_New (ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal int vtkRungeKutta2_ComputeNextStep_01 (HandleRef pThis, IntPtr xprev, IntPtr xnext, double t, ref double delT, double maxError, ref double error)
static internal int vtkRungeKutta2_ComputeNextStep_02 (HandleRef pThis, IntPtr xprev, IntPtr dxprev, IntPtr xnext, double t, ref double delT, double maxError, ref double error)
static internal int vtkRungeKutta2_ComputeNextStep_03 (HandleRef pThis, IntPtr xprev, IntPtr xnext, double t, ref double delT, ref double delTActual, double minStep, double maxStep, double maxError, ref double error)
static internal int vtkRungeKutta2_ComputeNextStep_04 (HandleRef pThis, IntPtr xprev, IntPtr dxprev, IntPtr xnext, double t, ref double delT, ref double delTActual, double minStep, double maxStep, double maxError, ref double error)
static internal int vtkRungeKutta2_IsA_05 (HandleRef pThis, string type)
static internal int vtkRungeKutta2_IsTypeOf_06 (string type)
static internal IntPtr vtkRungeKutta2_NewInstance_08 (HandleRef pThis, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)
static internal IntPtr vtkRungeKutta2_SafeDownCast_09 (HandleRef o, ref uint mteStatus, ref uint mteIndex, ref uint rawRefCount)

Static Private Member Functions

static vtkRungeKutta2 ()
 Automatically generated type registration mechanics.

Detailed Description

vtkRungeKutta2 - Integrate an initial value problem using 2nd order Runge-Kutta method.


Constructor & Destructor Documentation

static Kitware.VTK.vtkRungeKutta2.vtkRungeKutta2 ( ) [static, private]

Automatically generated type registration mechanics.

Kitware.VTK.vtkRungeKutta2.vtkRungeKutta2 ( IntPtr  rawCppThis,
bool  callDisposalMethod,
bool  strong 
)

Automatically generated constructor - called from generated code. DO NOT call directly.

Construct a vtkRungeKutta2 with no initial FunctionSet.


Member Function Documentation

override int Kitware.VTK.vtkRungeKutta2.ComputeNextStep ( IntPtr  xprev,
IntPtr  xnext,
double  t,
ref double  delT,
double  maxError,
ref double  error 
) [virtual]

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 Kitware.VTK.vtkInitialValueProblemSolver.

override int Kitware.VTK.vtkRungeKutta2.ComputeNextStep ( IntPtr  xprev,
IntPtr  dxprev,
IntPtr  xnext,
double  t,
ref double  delT,
double  maxError,
ref double  error 
) [virtual]

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 Kitware.VTK.vtkInitialValueProblemSolver.

override int Kitware.VTK.vtkRungeKutta2.ComputeNextStep ( IntPtr  xprev,
IntPtr  xnext,
double  t,
ref double  delT,
ref double  delTActual,
double  minStep,
double  maxStep,
double  maxError,
ref double  error 
) [virtual]

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 Kitware.VTK.vtkInitialValueProblemSolver.

override int Kitware.VTK.vtkRungeKutta2.ComputeNextStep ( IntPtr  xprev,
IntPtr  dxprev,
IntPtr  xnext,
double  t,
ref double  delT,
ref double  delTActual,
double  minStep,
double  maxStep,
double  maxError,
ref double  error 
) [virtual]

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 Kitware.VTK.vtkInitialValueProblemSolver.

override void Kitware.VTK.vtkRungeKutta2.Dispose ( bool  disposing) [protected]

Automatically generated protected Dispose method - called from public Dispose or the C# destructor. DO NOT call directly.

Reimplemented from Kitware.VTK.vtkInitialValueProblemSolver.

override int Kitware.VTK.vtkRungeKutta2.IsA ( string  type) [virtual]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkInitialValueProblemSolver.

static new int Kitware.VTK.vtkRungeKutta2.IsTypeOf ( string  type) [static]

Undocumented Block.

Reimplemented from Kitware.VTK.vtkInitialValueProblemSolver.

Construct a vtkRungeKutta2 with no initial FunctionSet.

Reimplemented from Kitware.VTK.vtkObject.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkInitialValueProblemSolver.

Undocumented Block.

Reimplemented from Kitware.VTK.vtkInitialValueProblemSolver.

Here is the call graph for this function:

static internal int Kitware.VTK.vtkRungeKutta2.vtkRungeKutta2_ComputeNextStep_01 ( HandleRef  pThis,
IntPtr  xprev,
IntPtr  xnext,
double  t,
ref double  delT,
double  maxError,
ref double  error 
) [private]
static internal int Kitware.VTK.vtkRungeKutta2.vtkRungeKutta2_ComputeNextStep_02 ( HandleRef  pThis,
IntPtr  xprev,
IntPtr  dxprev,
IntPtr  xnext,
double  t,
ref double  delT,
double  maxError,
ref double  error 
) [private]
static internal int Kitware.VTK.vtkRungeKutta2.vtkRungeKutta2_ComputeNextStep_03 ( HandleRef  pThis,
IntPtr  xprev,
IntPtr  xnext,
double  t,
ref double  delT,
ref double  delTActual,
double  minStep,
double  maxStep,
double  maxError,
ref double  error 
) [private]
static internal int Kitware.VTK.vtkRungeKutta2.vtkRungeKutta2_ComputeNextStep_04 ( HandleRef  pThis,
IntPtr  xprev,
IntPtr  dxprev,
IntPtr  xnext,
double  t,
ref double  delT,
ref double  delTActual,
double  minStep,
double  maxStep,
double  maxError,
ref double  error 
) [private]
static internal int Kitware.VTK.vtkRungeKutta2.vtkRungeKutta2_IsA_05 ( HandleRef  pThis,
string  type 
) [private]
static internal int Kitware.VTK.vtkRungeKutta2.vtkRungeKutta2_IsTypeOf_06 ( string  type) [private]
static internal IntPtr Kitware.VTK.vtkRungeKutta2.vtkRungeKutta2_New ( ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkRungeKutta2.vtkRungeKutta2_NewInstance_08 ( HandleRef  pThis,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]
static internal IntPtr Kitware.VTK.vtkRungeKutta2.vtkRungeKutta2_SafeDownCast_09 ( HandleRef  o,
ref uint  mteStatus,
ref uint  mteIndex,
ref uint  rawRefCount 
) [private]

Member Data Documentation

new readonly string Kitware.VTK.vtkRungeKutta2.MRClassNameKey = "14vtkRungeKutta2" [static]

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkInitialValueProblemSolver.

new const string Kitware.VTK.vtkRungeKutta2.MRFullTypeName = "Kitware.VTK.vtkRungeKutta2"

Automatically generated type registration mechanics.

Reimplemented from Kitware.VTK.vtkInitialValueProblemSolver.


The documentation for this class was generated from the following file: