Chaste Release::3.1
|
#include <MemfemMeshReader.hpp>
Public Member Functions | |
MemfemMeshReader (const std::string &rPathBaseName) | |
virtual | ~MemfemMeshReader () |
Private Member Functions | |
std::vector< std::vector < double > > | TokenizeStringsToDoubles (const std::vector< std::string > &rRawData) |
std::vector< std::vector < unsigned > > | TokenizeStringsToInts (const std::vector< std::string > &rRawData, unsigned dimensionOfObject, bool readHeader) |
Concrete version of the AbstractCachedMeshReader class. A MemfemMeshReader takes the base name of a set of Memfem mesh files (ie. the path and name of the files without the suffices). Once constructed the public methods of the AbstractCachedMeshReader (std::vector<double> GetNextNode(); etc) can be called to interrogate the data.
Definition at line 50 of file MemfemMeshReader.hpp.
MemfemMeshReader< ELEMENT_DIM, SPACE_DIM >::MemfemMeshReader | ( | const std::string & | rPathBaseName | ) |
The constructor takes the base name of a set of Memfem mesh files (ie. the path and name of the files without the suffices) and allows the data to be queried.
Typical use: AbstractMeshReader* pMeshReader = new MemfemMeshReader("pdes/tests/meshdata/Memfem_slab");
rPathBaseName | the base name of the files from which to read the mesh data |
Definition at line 46 of file MemfemMeshReader.cpp.
References EXCEPTION.
MemfemMeshReader< ELEMENT_DIM, SPACE_DIM >::~MemfemMeshReader | ( | ) | [virtual] |
Destructor.
Definition at line 114 of file MemfemMeshReader.cpp.
std::vector< std::vector< double > > MemfemMeshReader< ELEMENT_DIM, SPACE_DIM >::TokenizeStringsToDoubles | ( | const std::vector< std::string > & | rRawData | ) | [private] |
TokenizeStringsToDoubles is specific to reading node data which came from a Memfem file. Each string is expected to be 3 doubles (representing x,y,z) Return value is a vector where each item is a vector of doubles which represents position. Indices are implicit in the vector.
rRawData | the node data to be read |
Definition at line 118 of file MemfemMeshReader.cpp.
std::vector< std::vector< unsigned > > MemfemMeshReader< ELEMENT_DIM, SPACE_DIM >::TokenizeStringsToInts | ( | const std::vector< std::string > & | rRawData, |
unsigned | dimensionOfObject, | ||
bool | readHeader | ||
) | [private] |
TokenizeStringsToInts is for reading element or boundary face data which came from a Memfem file. Each string is expected to be: 3 or 4 node indices ( 3 indices for a face, 4 for a tetrahedron) a region marker? (if it's an element) NB: Region markers are currently ignored. Return value is a vector where each item is a vector of ints which represents indices of nodes.
rRawData | the element or boundary face data to be read |
dimensionOfObject | the number of lines of data to be read |
readHeader | whether to read the header |
Definition at line 151 of file MemfemMeshReader.cpp.