escript
Revision_
|
Represents a full Ripley domain including nodes and elements. More...
#include <RipleyDomain.h>
Public Member Functions | |
RipleyDomain () | |
RipleyDomain (const RipleyDomain &m) | |
virtual | ~RipleyDomain () |
virtual bool | initFromEscript (const escript::AbstractDomain *domain) |
Initialises the domain using an escript domain instance. More... | |
virtual bool | initFromFile (const std::string &filename) |
Reads the domain from a dump file. More... | |
virtual bool | writeToSilo (DBfile *dbfile, const std::string &pathInSilo, const StringVec &labels, const StringVec &units, bool writeMeshData) |
Writes the domain to a Silo file. More... | |
virtual void | reorderGhostZones (int ownIndex) |
Reorders elements so that 'ghost' elements (i.e. those that do not belong to ownIndex) appear last. More... | |
virtual void | removeGhostZones (int ownIndex) |
Removes 'ghost' elements and nodes. More... | |
virtual StringVec | getMeshNames () const |
Returns the names of all meshes within this domain. More... | |
virtual StringVec | getVarNames () const |
Returns the names of all 'special' domain variables. More... | |
virtual ElementData_ptr | getElementsByName (const std::string &name) const |
Returns element data with given name. More... | |
virtual NodeData_ptr | getMeshByName (const std::string &name) const |
Returns the node mesh with given name. More... | |
virtual DataVar_ptr | getDataVarByName (const std::string &name) const |
Creates and returns a variable with domain data. More... | |
virtual Centering | getCenteringForFunctionSpace (int fsCode) const |
Returns whether data on given function space is node or cell centered. More... | |
virtual NodeData_ptr | getMeshForFunctionSpace (int fsCode) const |
Returns the node mesh for given function space code. More... | |
virtual ElementData_ptr | getElementsForFunctionSpace (int fsCode) const |
Returns the element data for given function space code. More... | |
virtual NodeData_ptr | getNodes () const |
Returns a pointer to the full nodes. More... | |
virtual std::string | getSiloPath () const |
Returns the absolute path within Silo file if writeToSilo() or setSiloPath() was called before, the empty string otherwise. More... | |
virtual void | setSiloPath (const std::string &path) |
Sets the silo path to be used when saving to a Silo file. More... | |
Private Attributes | |
bool | initialized |
RipleyNodes_ptr | nodes |
RipleyElements_ptr | cells |
RipleyElements_ptr | faces |
std::string | siloPath |
Additional Inherited Members | |
![]() | |
virtual | ~DomainChunk () |
Destructor. More... | |
Represents a full Ripley domain including nodes and elements.
This class represents a Ripley domain including nodes, cells, and face elements. It provides functionality to read a domain from a file (generated by the domain's dump() method) or directly through an instance of RipleyDomain.
Once initialised, the domain can be saved to a Silo file or its nodes and elements accessed through the respective methods.
weipa::RipleyDomain::RipleyDomain | ( | ) |
weipa::RipleyDomain::RipleyDomain | ( | const RipleyDomain & | m | ) |
References cells, faces, initialized, and nodes.
|
inlinevirtual |
|
virtual |
Returns whether data on given function space is node or cell centered.
Implements weipa::DomainChunk.
References weipa::NODE_CENTERED, ripley::Nodes, ripley::ReducedNodes, and weipa::ZONE_CENTERED.
Referenced by ~RipleyDomain().
|
virtual |
Creates and returns a variable with domain data.
Implements weipa::DomainChunk.
References cells, ripley::Elements, ripley::FaceElements, faces, getElementsByName(), getNodes(), initialized, weipa::NODE_CENTERED, ripley::Nodes, nodes, and weipa::ZONE_CENTERED.
Referenced by ~RipleyDomain().
|
virtual |
Returns element data with given name.
Implements weipa::DomainChunk.
Referenced by getDataVarByName(), getMeshByName(), and ~RipleyDomain().
|
virtual |
Returns the element data for given function space code.
Implements weipa::DomainChunk.
References cells, ripley::Elements, ripley::FaceElements, faces, initialized, ripley::Nodes, ripley::ReducedElements, ripley::ReducedFaceElements, and ripley::ReducedNodes.
Referenced by getMeshForFunctionSpace(), and ~RipleyDomain().
|
virtual |
Returns the node mesh with given name.
Implements weipa::DomainChunk.
References getElementsByName(), and initialized.
Referenced by ~RipleyDomain().
|
virtual |
Returns the node mesh for given function space code.
Implements weipa::DomainChunk.
References getElementsForFunctionSpace(), and initialized.
Referenced by ~RipleyDomain().
|
virtual |
Returns the names of all meshes within this domain.
Implements weipa::DomainChunk.
References cells, faces, and initialized.
Referenced by ~RipleyDomain().
|
inlinevirtual |
Returns a pointer to the full nodes.
Implements weipa::DomainChunk.
References nodes.
Referenced by getDataVarByName().
|
inlinevirtual |
Returns the absolute path within Silo file if writeToSilo() or setSiloPath() was called before, the empty string otherwise.
Implements weipa::DomainChunk.
References siloPath.
|
virtual |
Returns the names of all 'special' domain variables.
Implements weipa::DomainChunk.
References cells, faces, initialized, and nodes.
Referenced by ~RipleyDomain().
|
virtual |
Initialises the domain using an escript domain instance.
Implements weipa::DomainChunk.
References cells, ripley::Elements, ripley::FaceElements, faces, initialized, and nodes.
Referenced by ~RipleyDomain().
|
virtual |
|
virtual |
Removes 'ghost' elements and nodes.
Implements weipa::DomainChunk.
References cells, faces, initialized, and nodes.
Referenced by ~RipleyDomain().
|
virtual |
Reorders elements so that 'ghost' elements (i.e. those that do not belong to ownIndex) appear last.
Implements weipa::DomainChunk.
References cells, faces, and initialized.
Referenced by ~RipleyDomain().
|
inlinevirtual |
Sets the silo path to be used when saving to a Silo file.
Implements weipa::DomainChunk.
References siloPath.
|
virtual |
Writes the domain to a Silo file.
Implements weipa::DomainChunk.
References cells, faces, initialized, and siloPath.
Referenced by ~RipleyDomain().
|
private |
|
private |
|
private |
|
private |
Referenced by getDataVarByName(), getNodes(), getVarNames(), initFromEscript(), removeGhostZones(), and RipleyDomain().
|
private |
Referenced by getSiloPath(), setSiloPath(), and writeToSilo().