Skip to content
Snippets Groups Projects
Commit b52b1ae4 authored by Tom Fischer's avatar Tom Fischer
Browse files

[PL] Rm ProcessVariable::getOrCreateMeshProperty().

parent 9c289ce2
No related branches found
No related tags found
No related merge requests found
......@@ -176,12 +176,6 @@ MeshLib::Mesh const& ProcessVariable::getMesh() const
return _mesh;
}
MeshLib::PropertyVector<double>& ProcessVariable::getOrCreateMeshProperty()
{
return *MeshLib::getOrCreateMeshProperty<double>(
_mesh, _name, MeshLib::MeshItemType::Node, _n_components);
}
std::vector<std::unique_ptr<BoundaryCondition>>
ProcessVariable::createBoundaryConditions(
const NumLib::LocalToGlobalIndexMap& dof_table,
......
......@@ -69,11 +69,6 @@ public:
return _initial_condition;
}
// Get or create a property vector for results.
// The returned mesh property size is number of mesh nodes times number of
// components.
MeshLib::PropertyVector<double>& getOrCreateMeshProperty();
unsigned getShapeFunctionOrder() const { return _shapefunction_order; }
private:
......
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