Chaste Release::3.1
VertexMeshWriter< ELEMENT_DIM, SPACE_DIM > Class Template Reference

#include <VertexMeshWriter.hpp>

Inheritance diagram for VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >:
Collaboration diagram for VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >:

List of all members.

Public Member Functions

 VertexMeshWriter (const std::string &rDirectory, const std::string &rBaseName, const bool clearOutputDir=true)
 ~VertexMeshWriter ()
void WriteFilesUsingMesh (VertexMesh< ELEMENT_DIM, SPACE_DIM > &rMesh)
void WriteVtkUsingMesh (VertexMesh< ELEMENT_DIM, SPACE_DIM > &rMesh, std::string stamp="")
void AddCellData (std::string dataName, std::vector< double > dataPayload)
void AddPointData (std::string dataName, std::vector< double > dataPayload)
std::vector< doubleGetNextNode ()
ElementData GetNextElement ()
VertexElementData GetNextElementWithFaces ()
void WriteFiles ()

Private Attributes

VertexMesh< ELEMENT_DIM,
SPACE_DIM > * 
mpMesh
MeshWriterIterators
< ELEMENT_DIM, SPACE_DIM > * 
mpIters
NodeMapmpNodeMap
unsigned mNodeMapCurrentIndex
vtkUnstructuredGrid * mpVtkUnstructedMesh

Detailed Description

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
class VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >

A mesh writer class for vertex-based meshes.

Definition at line 71 of file VertexMeshWriter.hpp.


Constructor & Destructor Documentation

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::VertexMeshWriter ( const std::string &  rDirectory,
const std::string &  rBaseName,
const bool  clearOutputDir = true 
)

Constructor.

Parameters:
rDirectoryreference to the output directory, relative to where Chaste output is stored
rBaseNamereference to the base name for results files
clearOutputDirwhether to clear the output directory prior to writing files

Definition at line 56 of file VertexMeshWriter.cpp.

References VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::mpIters, and VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::mpVtkUnstructedMesh.

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::~VertexMeshWriter ( )

Destructor.

Definition at line 75 of file VertexMeshWriter.cpp.


Member Function Documentation

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
void VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::AddCellData ( std::string  dataName,
std::vector< double dataPayload 
)

Add data to a future VTK file.

Parameters:
dataNamea tag to go into the VTK file
dataPayloada pay-load of length (number of elements)

Definition at line 275 of file VertexMeshWriter.cpp.

Referenced by VertexBasedCellPopulation< DIM >::WriteVtkResultsToFile(), MeshBasedCellPopulationWithGhostNodes< DIM >::WriteVtkResultsToFile(), and MeshBasedCellPopulation< ELEMENT_DIM, SPACE_DIM >::WriteVtkResultsToFile().

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
void VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::AddPointData ( std::string  dataName,
std::vector< double dataPayload 
)

Add data to a future VTK file.

Parameters:
dataNamea tag to go into the VTK file
dataPayloada pay-load of length (number of nodes)

Definition at line 292 of file VertexMeshWriter.cpp.

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
ElementData VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::GetNextElement ( ) [virtual]
Returns:
the data (indices/attributes) of the next element to be written to file

Todo:
Assert this method should only be called in 2D? (#1076/#1377)

Reimplemented from AbstractMeshWriter< ELEMENT_DIM, SPACE_DIM >.

Definition at line 177 of file VertexMeshWriter.cpp.

References AbstractMeshWriter< ELEMENT_DIM, SPACE_DIM >::GetNextElement(), and ElementData::NodeIndices.

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
VertexElementData VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::GetNextElementWithFaces ( )
Returns:
the data (indices/attributes) of the next element to be written to file, including its faces. This method should only be called in 3D.

Todo:
Store face orientations? (#1076/#1377)

Definition at line 124 of file VertexMeshWriter.cpp.

References ElementData::AttributeValue, VertexElement< ELEMENT_DIM, SPACE_DIM >::GetFace(), ElementData::NodeIndices, and VertexElementData::NodeIndices.

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
std::vector< double > VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::GetNextNode ( ) [virtual]
Returns:
the coordinates of the next node to be written to file

Reimplemented from AbstractMeshWriter< ELEMENT_DIM, SPACE_DIM >.

Definition at line 97 of file VertexMeshWriter.cpp.

References AbstractMeshWriter< ELEMENT_DIM, SPACE_DIM >::GetNextNode().

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
void VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::WriteFiles ( ) [virtual]

Write mesh data to files. This method must be overridden in concrete classes.

Todo:
#2146 - bug in the making? If this attribute is supposed to be zero we will assume there isn't one!
Todo:
Store face orientations? (#1076/#1377)

Implements AbstractMeshWriter< ELEMENT_DIM, SPACE_DIM >.

Definition at line 339 of file VertexMeshWriter.cpp.

References VertexElementData::AttributeValue, ElementData::AttributeValue, VertexElementData::Faces, ChasteBuildInfo::GetProvenanceString(), VertexElementData::NodeIndices, and ElementData::NodeIndices.

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
void VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::WriteFilesUsingMesh ( VertexMesh< ELEMENT_DIM, SPACE_DIM > &  rMesh)
Todo:
Mesh should be const (#1076)

Write files using a mesh.

Parameters:
rMeshreference to the vertex-based mesh
Todo:
Mesh should be const (#1076)

Definition at line 310 of file VertexMeshWriter.cpp.

References VertexMesh< ELEMENT_DIM, SPACE_DIM >::GetNumNodes(), and NodeMap::SetNewIndex().

Referenced by VertexMesh< DIM, DIM >::save().

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
void VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::WriteVtkUsingMesh ( VertexMesh< ELEMENT_DIM, SPACE_DIM > &  rMesh,
std::string  stamp = "" 
)

Member Data Documentation

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
unsigned VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::mNodeMapCurrentIndex [private]

What was the last index written to mpNodeMap ?

Definition at line 86 of file VertexMeshWriter.hpp.

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
MeshWriterIterators<ELEMENT_DIM,SPACE_DIM>* VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::mpIters [private]

Iterators over the mesh

Definition at line 81 of file VertexMeshWriter.hpp.

Referenced by VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::VertexMeshWriter().

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
VertexMesh<ELEMENT_DIM,SPACE_DIM>* VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::mpMesh [private]

If writing from a mesh object, the mesh to write to disk. Otherwise NULL.

Definition at line 78 of file VertexMeshWriter.hpp.

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
NodeMap* VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::mpNodeMap [private]

Track deleted nodes so they don't get written

Definition at line 84 of file VertexMeshWriter.hpp.

template<unsigned ELEMENT_DIM, unsigned SPACE_DIM>
vtkUnstructuredGrid* VertexMeshWriter< ELEMENT_DIM, SPACE_DIM >::mpVtkUnstructedMesh [private]

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