Skip to content
Snippets Groups Projects
Commit d05ae8de authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[PL] Use generalized MeshLib::getOrCreateMeshProp.

parent 2760e915
No related branches found
No related tags found
No related merge requests found
...@@ -119,41 +119,6 @@ void doProcessOutput(std::string const& file_name, ...@@ -119,41 +119,6 @@ void doProcessOutput(std::string const& file_name,
#ifndef USE_PETSC #ifndef USE_PETSC
// the following section is for the output of secondary variables // the following section is for the output of secondary variables
auto count_mesh_items = [](
MeshLib::Mesh const& mesh, MeshLib::MeshItemType type) -> std::size_t
{
switch (type) {
case MeshLib::MeshItemType::Cell: return mesh.getNumberOfElements();
case MeshLib::MeshItemType::Node: return mesh.getNumberOfNodes();
default: break; // avoid compiler warning
}
return 0;
};
auto get_or_create_mesh_property = [&mesh, &count_mesh_items](
std::string const& property_name, MeshLib::MeshItemType type)
{
// Get or create a property vector for results.
MeshLib::PropertyVector<double>* result = nullptr;
auto const N = count_mesh_items(mesh, type);
if (mesh.getProperties().existsPropertyVector<double>(property_name))
{
result = mesh.getProperties().template
getPropertyVector<double>(property_name);
}
else
{
result = mesh.getProperties().template
createNewPropertyVector<double>(property_name, type);
result->resize(N);
}
assert(result && result->size() == N);
return result;
};
auto add_secondary_var = [&](SecondaryVariable const& var, auto add_secondary_var = [&](SecondaryVariable const& var,
std::string const& output_name) std::string const& output_name)
{ {
...@@ -162,9 +127,8 @@ void doProcessOutput(std::string const& file_name, ...@@ -162,9 +127,8 @@ void doProcessOutput(std::string const& file_name,
{ {
DBUG(" secondary variable %s", output_name.c_str()); DBUG(" secondary variable %s", output_name.c_str());
auto result = get_or_create_mesh_property( auto result = MeshLib::getOrCreateMeshProperty<double>(
output_name, MeshLib::MeshItemType::Node); mesh, output_name, MeshLib::MeshItemType::Node, 1);
assert(result->size() == mesh.getNumberOfNodes());
std::unique_ptr<GlobalVector> result_cache; std::unique_ptr<GlobalVector> result_cache;
auto const& nodal_values = auto const& nodal_values =
...@@ -183,9 +147,8 @@ void doProcessOutput(std::string const& file_name, ...@@ -183,9 +147,8 @@ void doProcessOutput(std::string const& file_name,
DBUG(" secondary variable %s residual", output_name.c_str()); DBUG(" secondary variable %s residual", output_name.c_str());
auto const& property_name_res = output_name + "_residual"; auto const& property_name_res = output_name + "_residual";
auto result = get_or_create_mesh_property( auto result = MeshLib::getOrCreateMeshProperty<double>(
property_name_res, MeshLib::MeshItemType::Cell); mesh, property_name_res, MeshLib::MeshItemType::Cell, 1);
assert(result->size() == mesh.getNumberOfElements());
std::unique_ptr<GlobalVector> result_cache; std::unique_ptr<GlobalVector> result_cache;
auto const& residuals = auto const& residuals =
......
...@@ -116,22 +116,8 @@ MeshLib::Mesh const& ProcessVariable::getMesh() const ...@@ -116,22 +116,8 @@ MeshLib::Mesh const& ProcessVariable::getMesh() const
MeshLib::PropertyVector<double>& ProcessVariable::getOrCreateMeshProperty() MeshLib::PropertyVector<double>& ProcessVariable::getOrCreateMeshProperty()
{ {
if (_mesh.getProperties().hasPropertyVector(_name)) return *MeshLib::getOrCreateMeshProperty<double>(
{ _mesh, _name, MeshLib::MeshItemType::Node, _n_components);
auto result =
_mesh.getProperties().template getPropertyVector<double>(_name);
assert(result);
assert(result->size() == _mesh.getNumberOfNodes() * _n_components);
return *result;
}
else
{
auto result = _mesh.getProperties().template createNewPropertyVector<double>(
_name, MeshLib::MeshItemType::Node, _n_components);
assert(result);
result->resize(_mesh.getNumberOfNodes() * _n_components);
return *result;
}
} }
std::vector<std::unique_ptr<BoundaryCondition>> std::vector<std::unique_ptr<BoundaryCondition>>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment