Convert data sets bound per cell into data sets bound per node on a given structured volume mesh. More...
#include <MeshVizXLM/extractors/MiPerCellToPerNodeExtractIjk.h>
Public Member Functions | |
virtual | ~MiPerCellToPerNodeExtractIjk () |
virtual const MeXScalardSetIjk & | extractScalarSet (const MiScalardSetIjk &inputSet)=0 |
Converts a PER_CELL scalar set defined on the input mesh into a PER_NODE scalar set. | |
virtual const MeXVec3dSetIjk & | extractVec3Set (const MiVec3dSetIjk &inputSet)=0 |
Converts a PER_CELL vector set defined on the input mesh into a PER_NODE vecto set. | |
Public Member Functions inherited from MiBaseExtractor | |
virtual | ~MiBaseExtractor () |
virtual void | setExtractorCallback (MiExtractorCallback *extractorCallback)=0 |
Set the user defined extractor callback which will be called before each extraction, during each extraction and after each extraction. | |
virtual SoDEPRECATED void | setExtractorCallback (MiExtractorCallback &extractorCallback) |
Static Public Member Functions | |
static MiPerCellToPerNodeExtractIjk * | getNewInstance (const MiVolumeMeshRegular &mesh, bool parallel=true) |
Factory method returning a new instance of a class implementing this abstract class. | |
static MiPerCellToPerNodeExtractIjk * | getNewInstance (const MiVolumeMeshRectilinear &mesh, bool parallel=true) |
static MiPerCellToPerNodeExtractIjk * | getNewInstance (const MiVolumeMeshCurvilinear &mesh, bool parallel=true) |
Convert data sets bound per cell into data sets bound per node on a given structured volume mesh.
This conversion tool is another type of extractor which takes a data set bound per cell on a structured volume mesh as input and produces a new data set bound per node on the same mesh.
The value computed at a given node is the average of values from the surrounding cells, except dead cells.
The following example shows how to convert data sets bound per cell:
Definition at line 62 of file MiPerCellToPerNodeExtractIjk.h.
|
inlinevirtual |
Definition at line 65 of file MiPerCellToPerNodeExtractIjk.h.
|
pure virtual |
Converts a PER_CELL scalar set defined on the input mesh into a PER_NODE scalar set.
inputSet | The input PER_CELL scalar set defined on the input mesh. |
|
pure virtual |
Converts a PER_CELL vector set defined on the input mesh into a PER_NODE vecto set.
inputSet | The input PER_CELL vector set defined on the input mesh. |
|
static |
|
static |
|
static |
Factory method returning a new instance of a class implementing this abstract class.
mesh | The input mesh |
parallel | When true, tries to create an extract module using a parallel algorithm to speed up the extraction. |