Convert data sets bound per cell into data sets bound per node on a given structured hexahedron mesh. More...
#include <MeshVizXLM/extractors/MiPerCellToPerNodeExtractHexahedronIjk.h>
Public Member Functions | |
virtual | ~MiPerCellToPerNodeExtractHexahedronIjk () |
virtual const MeXScalardSetI & | extractScalarSet (const MiScalardSetIjk &inputSet)=0 |
virtual const MeXVec3dSetI & | extractVec3Set (const MiVec3dSetIjk &inputSet)=0 |
Static Public Member Functions | |
static MiPerCellToPerNodeExtractHexahedronIjk * | getNewInstance (const MiVolumeMeshHexahedronIjk &mesh, bool parallel=true) |
This conversion tool is another type of extractor which takes a data set bound per cell on a MiVolumeMeshHexahedronIjk 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 cells sharing this node, except dead cells.
The following example shows how to convert data sets bound per cell:
MiPerCellToPerNodeExtractHexahedronIjk* extract = MiPerCellToPerNodeExtractHexahedronIjk::getNewInstance(mesh); const MeXScalardSetI& perNodeScalarSet = extract->extractScalarSet(perCellScalarSet); const MeXVec3dSetI& perNodeVectorSet = extract->extractVec3Set(perCellVectorSet);
virtual MiPerCellToPerNodeExtractHexahedronIjk::~MiPerCellToPerNodeExtractHexahedronIjk | ( | ) | [inline, virtual] |
virtual const MeXScalardSetI& MiPerCellToPerNodeExtractHexahedronIjk::extractScalarSet | ( | const MiScalardSetIjk & | inputSet | ) | [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. |
virtual const MeXVec3dSetI& MiPerCellToPerNodeExtractHexahedronIjk::extractVec3Set | ( | const MiVec3dSetIjk & | inputSet | ) | [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 MiPerCellToPerNodeExtractHexahedronIjk* MiPerCellToPerNodeExtractHexahedronIjk::getNewInstance | ( | const MiVolumeMeshHexahedronIjk & | mesh, | |
bool | parallel = true | |||
) | [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. |