Loading [MathJax]/extensions/MathMenu.js
OGS
getOrCreateMeshProperty.h
Go to the documentation of this file.
1
10#pragma once
11#include <string>
12
13#include "MeshLib/Mesh.h"
16
17namespace MeshLib
18{
23template <typename T>
25 std::string const& property_name,
26 MeshItemType const item_type,
27 int const number_of_components)
28{
29 if (property_name.empty())
30 {
32 "Trying to get or to create a mesh property with empty name.");
33 }
34
35 auto numberOfMeshItems = [&mesh, &item_type]() -> std::size_t
36 {
37 switch (item_type)
38 {
40 return mesh.getNumberOfElements();
42 return mesh.getNumberOfNodes();
44 return 0; // For the integration point data the size is
45 // variable
46 default:
48 "getOrCreateMeshProperty cannot handle other "
49 "types than Node, Cell, or IntegrationPoint.");
50 }
51 return 0;
52 };
53
54 if (mesh.getProperties().existsPropertyVector<T>(property_name))
55 {
56 auto result =
57 mesh.getProperties().template getPropertyVector<T>(property_name);
58 assert(result);
59 if (item_type != MeshItemType::IntegrationPoint)
60 {
61 // Test the size if number of mesh items is known, which is not the
62 // case for the integration point data.
63 assert(result->size() ==
64 numberOfMeshItems() * number_of_components);
65 }
66 return result;
67 }
68
69 auto result = mesh.getProperties().template createNewPropertyVector<T>(
70 property_name, item_type, number_of_components);
71 assert(result);
72 result->resize(numberOfMeshItems() * number_of_components);
73 return result;
74}
75} // namespace MeshLib
#define OGS_FATAL(...)
Definition Error.h:26
Definition of the Mesh class.
Properties & getProperties()
Definition Mesh.h:136
std::size_t getNumberOfNodes() const
Get the number of nodes.
Definition Mesh.h:102
std::size_t getNumberOfElements() const
Get the number of elements.
Definition Mesh.h:99
bool existsPropertyVector(std::string_view name) const
Definition Properties.h:74
PropertyVector< T > * getOrCreateMeshProperty(Mesh &mesh, std::string const &property_name, MeshItemType const item_type, int const number_of_components)