MeshValueCollection.h¶
Note
The documentation on this page was automatically extracted from the DOLFIN C++ code and may need to be edited or expanded.
-
class
MeshValueCollection
¶ Parent class(es)
The MeshValueCollection class can be used to store data associated with a subset of the entities of a mesh of a given topological dimension. It differs from the MeshFunction class in two ways. First, data does not need to be associated with all entities (only a subset). Second, data is associated with entities through the corresponding cell index and local entity number (relative to the cell), not by global entity index, which means that data may be stored robustly to file.
-
MeshValueCollection
()¶ Create empty mesh value collection
Create an empty mesh value collection on a given mesh
- @param mesh (
Mesh
) - The mesh.
- @param mesh (
-
explicit
MeshValueCollection
(const MeshFunction<T> &mesh_function)¶ Create a mesh value collection from a MeshFunction
- @param mesh_function (MeshFunction<T>)
- The mesh function for creating a MeshValueCollection.
Create a mesh value collection of entities of given dimension on a given mesh
- @param mesh (
Mesh
) - The mesh associated with the collection.
- @param dim (std::size_t)
- The mesh entity dimension for the mesh value collection.
- @param mesh (
Create a mesh value collection from a file.
- @param mesh (Mesh)
- A mesh associated with the collection. The mesh is used to map collection values to the appropriate process.
- @param filename (std::string)
- The XML file name.
-
MeshValueCollection<T> &
operator=
(const MeshFunction<T> &mesh_function)¶ Assignment operator
- @param mesh_function (
MeshFunction
) - A
MeshFunction
object used to construct a MeshValueCollection.
- @param mesh_function (
-
MeshValueCollection<T> &
operator=
(const MeshValueCollection<T> &mesh_value_collection)¶ Assignment operator
- @param mesh_value_collection (
MeshValueCollection
) - A
MeshValueCollection
object used to construct a MeshValueCollection.
- @param mesh_value_collection (
Initialise MeshValueCollection with mesh and dimension
- @param mesh (_mesh))
- The mesh on which the value collection is defined
- @param dim (std::size_t)
- The mesh entity dimension for the mesh value collection.
-
void
init
(std::size_t dim)¶ Set dimension. This function should not generally be used. It is for reading MeshValueCollections as the dimension is not generally known at construction.
- @param dim (std::size_t)
- The mesh entity dimension for the mesh value collection.
-
std::size_t
dim
() const¶ Return topological dimension
- @return std::size_t
- The dimension.
-
bool
empty
() const¶ Return true if the subset is empty
- @return bool
- True if the subset is empty.
-
std::size_t
size
() const¶ Return size (number of entities in subset)
- @return std::size_t
- The size.
-
bool
set_value
(std::size_t cell_index, std::size_t local_entity, const T &value)¶ Set marker value for given entity defined by a cell index and a local entity index
- @param cell_index (std::size_t)
- The index of the cell.
- @param local_entity (std::size_t)
- The local index of the entity relative to the cell.
- @param value (T)
- The value of the marker.
- @return bool
- True is a new value is inserted, false if overwriting an existing value.
-
bool
set_value
(std::size_t entity_index, const T &value)¶ Set value for given entity index
- @param entity_index (std::size_t)
- Index of the entity.
- @param value (T).
- The value of the marker.
- @return bool
- True is a new value is inserted, false if overwriting an existing value.
-
T
get_value
(std::size_t cell_index, std::size_t local_entity)¶ Get marker value for given entity defined by a cell index and a local entity index
- @param cell_index (std::size_t)
- The index of the cell.
- @param local_entity (std::size_t)
- The local index of the entity relative to the cell.
- @return marker_value (T)
- The value of the marker.
-
std::map<std::pair<std::size_t, std::size_t>, T> &
values
()¶ Get all values
- @return std::map<std::pair<std::size_t, std::size_t>, T>
- A map from positions to values.
-
const std::map<std::pair<std::size_t, std::size_t>, T> &
values
() const¶ Get all values (const version)
- @return std::map<std::pair<std::size_t, std::size_t>, T>
- A map from positions to values.
-
void
clear
()¶ Clear all values
-
std::string
str
(bool verbose) const¶ Return informal string representation (pretty-print)
- @param verbose (bool)
- Flag to turn on additional output.
- @return std::string
- An informal representation.
-