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

[PL] GW: Add MeshSubsets and MeshComponentMap.

parent 3d9e0fee
No related branches found
No related tags found
No related merge requests found
...@@ -14,6 +14,8 @@ ...@@ -14,6 +14,8 @@
#include "logog/include/logog.hpp" #include "logog/include/logog.hpp"
#include "MeshLib/Mesh.h" #include "MeshLib/Mesh.h"
#include "MeshLib/MeshSubset.h"
#include "MeshLib/MeshSubsets.h"
#include "ProcessVariable.h" #include "ProcessVariable.h"
namespace ProcessLib namespace ProcessLib
...@@ -51,14 +53,28 @@ public: ...@@ -51,14 +53,28 @@ public:
void initialize() void initialize()
{ {
// Create mesh's subset using all nodes of the mesh.
_mesh_subset_all_nodes = new MeshLib::MeshSubset(_mesh, _mesh.getNodes());
// Define a mesh item composition in a vector.
_all_mesh_subsets.push_back(new MeshLib::MeshSubsets(_mesh_subset_all_nodes));
AssemblerLib::MeshComponentMap mesh_component_map(_all_mesh_subsets,
AssemblerLib::ComponentOrder::BY_COMPONENT);
} }
~GroundwaterFlowProcess() ~GroundwaterFlowProcess()
{ {
for (auto p : _all_mesh_subsets)
delete p;
delete _mesh_subset_all_nodes;
} }
private: private:
ProcessVariable const* _hydraulic_head = nullptr; ProcessVariable const* _hydraulic_head = nullptr;
MeshLib::MeshSubset const* _mesh_subset_all_nodes = nullptr;
std::vector<MeshLib::MeshSubsets*> _all_mesh_subsets;
}; };
} // namespace ProcessLib } // namespace ProcessLib
......
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