#include <vtkCellDerivatives.h>
Inheritance diagram for vtkCellDerivatives:
vtkCellDerivatives is a filter that computes derivatives of scalars and vectors at the center of cells. You can choose to generate different output including the scalar gradient (a vector), computed tensor vorticity (a vector), gradient of input vectors (a tensor), and strain matrix of the input vectors (a tensor); or you may choose to pass data through to the output.
Note that it is assumed that on input scalars and vector point data is available, which are then used to generate cell vectors and tensors. (The interpolation functions of the cells are used to compute the derivatives which is why point data is required.)
The point data is passed through the filter to the output.
Definition at line 60 of file vtkCellDerivatives.h.
virtual void | SetVectorMode (int) |
virtual int | GetVectorMode () |
void | SetVectorModeToPassVectors () |
void | SetVectorModeToComputeGradient () |
void | SetVectorModeToComputeVorticity () |
const char * | GetVectorModeAsString () |
static vtkCellDerivatives * | New () |
Public Types | |
typedef vtkDataSetAlgorithm | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | SetTensorMode (int) |
virtual int | GetTensorMode () |
void | SetTensorModeToPassTensors () |
void | SetTensorModeToComputeGradient () |
void | SetTensorModeToComputeStrain () |
const char * | GetTensorModeAsString () |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkCellDerivatives * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkCellDerivatives () | |
~vtkCellDerivatives () | |
int | RequestData (vtkInformation *, vtkInformationVector **, vtkInformationVector *) |
Protected Attributes | |
int | VectorMode |
int | TensorMode |
|
Reimplemented from vtkDataSetAlgorithm. Definition at line 63 of file vtkCellDerivatives.h. |
|
|
|
Definition at line 105 of file vtkCellDerivatives.h. |
|
Reimplemented from vtkDataSetAlgorithm. |
|
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 vtkDataSetAlgorithm. |
|
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 vtkDataSetAlgorithm. |
|
Reimplemented from vtkDataSetAlgorithm. |
|
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 vtkDataSetAlgorithm. |
|
Construct to compute the gradient of the scalars and vectors. Reimplemented from vtkDataSetAlgorithm. |
|
Control how the filter works to generate vector cell data. You can choose to pass the input cell vectors, compute the gradient of the input scalars, or extract the vorticity of the computed vector gradient tensor. By default (VectorModeToComputeGradient), the filter will take the gradient of the input scalar data. |
|
Control how the filter works to generate vector cell data. You can choose to pass the input cell vectors, compute the gradient of the input scalars, or extract the vorticity of the computed vector gradient tensor. By default (VectorModeToComputeGradient), the filter will take the gradient of the input scalar data. |
|
Control how the filter works to generate vector cell data. You can choose to pass the input cell vectors, compute the gradient of the input scalars, or extract the vorticity of the computed vector gradient tensor. By default (VectorModeToComputeGradient), the filter will take the gradient of the input scalar data. Definition at line 77 of file vtkCellDerivatives.h. References VTK_VECTOR_MODE_PASS_VECTORS. |
|
Control how the filter works to generate vector cell data. You can choose to pass the input cell vectors, compute the gradient of the input scalars, or extract the vorticity of the computed vector gradient tensor. By default (VectorModeToComputeGradient), the filter will take the gradient of the input scalar data. Definition at line 79 of file vtkCellDerivatives.h. References VTK_VECTOR_MODE_COMPUTE_GRADIENT. |
|
Control how the filter works to generate vector cell data. You can choose to pass the input cell vectors, compute the gradient of the input scalars, or extract the vorticity of the computed vector gradient tensor. By default (VectorModeToComputeGradient), the filter will take the gradient of the input scalar data. Definition at line 81 of file vtkCellDerivatives.h. References VTK_VECTOR_MODE_COMPUTE_VORTICITY. |
|
Control how the filter works to generate vector cell data. You can choose to pass the input cell vectors, compute the gradient of the input scalars, or extract the vorticity of the computed vector gradient tensor. By default (VectorModeToComputeGradient), the filter will take the gradient of the input scalar data. |
|
Control how the filter works to generate tensor cell data. You can choose to pass the input cell tensors, compute the gradient of the input vectors, or compute the strain tensor of the vector gradient tensor. By default (TensorModeToComputeGradient), the filter will take the gradient of the vector data to construct a tensor. |
|
Control how the filter works to generate tensor cell data. You can choose to pass the input cell tensors, compute the gradient of the input vectors, or compute the strain tensor of the vector gradient tensor. By default (TensorModeToComputeGradient), the filter will take the gradient of the vector data to construct a tensor. |
|
Control how the filter works to generate tensor cell data. You can choose to pass the input cell tensors, compute the gradient of the input vectors, or compute the strain tensor of the vector gradient tensor. By default (TensorModeToComputeGradient), the filter will take the gradient of the vector data to construct a tensor. Definition at line 94 of file vtkCellDerivatives.h. References VTK_TENSOR_MODE_PASS_TENSORS. |
|
Control how the filter works to generate tensor cell data. You can choose to pass the input cell tensors, compute the gradient of the input vectors, or compute the strain tensor of the vector gradient tensor. By default (TensorModeToComputeGradient), the filter will take the gradient of the vector data to construct a tensor. Definition at line 96 of file vtkCellDerivatives.h. References VTK_TENSOR_MODE_COMPUTE_GRADIENT. |
|
Control how the filter works to generate tensor cell data. You can choose to pass the input cell tensors, compute the gradient of the input vectors, or compute the strain tensor of the vector gradient tensor. By default (TensorModeToComputeGradient), the filter will take the gradient of the vector data to construct a tensor. Definition at line 98 of file vtkCellDerivatives.h. References VTK_TENSOR_MODE_COMPUTE_STRAIN. |
|
Control how the filter works to generate tensor cell data. You can choose to pass the input cell tensors, compute the gradient of the input vectors, or compute the strain tensor of the vector gradient tensor. By default (TensorModeToComputeGradient), the filter will take the gradient of the vector data to construct a tensor. |
|
This is called by the superclass. This is the method you should override. Reimplemented from vtkDataSetAlgorithm. |
|
Definition at line 108 of file vtkCellDerivatives.h. |
|
Definition at line 109 of file vtkCellDerivatives.h. |