51 std::size_t n_components = 1);
71 std::string
const& name,
72 std::size_t n_prop_groups,
73 std::vector<std::size_t>
const& item2group_mapping,
75 std::size_t n_components = 1);
88 int const number_of_components)
const;
103 template <
typename T>
106 int const n_components)
const;
111 template <
typename T>
114 int const n_components);
127 template <
typename T>
140 std::vector<std::size_t>
const& exclude_elem_ids,
141 std::vector<std::size_t>
const& exclude_node_ids)
const;
147 std::vector<MeshItemType>
const& exclude_mesh_item_types)
const;
158 std::map<std::string, PropertyVectorBase*>::const_iterator
begin()
const;
159 std::map<std::string, PropertyVectorBase*>::const_iterator
end()
const;
160 std::map<std::string, PropertyVectorBase*>::iterator
begin();
161 std::map<std::string, PropertyVectorBase*>::iterator
end();
162 std::map<std::string, PropertyVectorBase*>::size_type
size()
const;
164 std::map<std::string, PropertyVectorBase*>::size_type
size(
178template <
typename Function>
187 switch (mesh_item_type)
190 return "bulk_node_ids";
193 return "bulk_element_ids";
196 return "bulk_edge_ids";
199 return "bulk_face_ids";
202 OGS_FATAL(
"MeshItemType::IntegrationPoint is not handled.");
207 "Unknown mesh item type. At the moment only for mesh item "
208 "types 'Node', 'Cell', and 'Face' mapping names are "
208 "types 'Node', 'Cell', and 'Face' mapping names are " {
…}
Implemenatiom of the template part of the class Properties.
Property manager on mesh items. Class Properties manages scalar, vector or matrix properties....
Properties & operator=(Properties &&properties)=default
std::vector< std::string > getPropertyVectorNames() const
std::map< std::string, PropertyVectorBase * > _properties
bool hasPropertyVector(std::string_view name) const
bool existsPropertyVector(std::string_view name) const
std::map< std::string, PropertyVectorBase * >::size_type size() const
Properties excludeCopyProperties(std::vector< std::size_t > const &exclude_elem_ids, std::vector< std::size_t > const &exclude_node_ids) const
std::map< std::string, PropertyVectorBase * >::const_iterator begin() const
PropertyVector< T > * createNewPropertyVector(std::string_view name, MeshItemType mesh_item_type, std::size_t n_components=1)
PropertyVector< T > const * getPropertyVector(std::string_view name) const
std::map< std::string, PropertyVectorBase * >::const_iterator end() const
void removePropertyVector(std::string_view name)
Properties & operator=(Properties const &properties)
PropertyVector< T > const * getPropertyVector(std::string_view name, MeshItemType const item_type, int const n_components) const
constexpr std::string_view getBulkIDString(MeshItemType mesh_item_type)
void applyToPropertyVectors(Properties const &properties, Function f)