Skip to content
Snippets Groups Projects
Commit 53f7c46d authored by Dennis Gläser's avatar Dennis Gläser
Browse files

[mpfa-o][iv] minor cleanup

parent 29154561
No related branches found
No related tags found
2 merge requests!1337WIP Fix/dirichlet caching v2,!1298Restructure mpfa flux caches
...@@ -160,16 +160,11 @@ public: ...@@ -160,16 +160,11 @@ public:
const auto numGlobalScvfs = indexSet.nodalIndexSet().numScvfs(); const auto numGlobalScvfs = indexSet.nodalIndexSet().numScvfs();
// reserve memory for local entities // reserve memory for local entities
elements_.clear(); elements_.clear(); elements_.reserve(numLocalScvs);
scvs_.clear(); scvs_.clear(); scvs_.reserve(numLocalScvs);
scvfs_.clear(); scvfs_.clear(); scvfs_.reserve(numFaces_);
localFaceData_.clear(); localFaceData_.clear(); localFaceData_.reserve(numGlobalScvfs);
dirichletData_.clear(); dirichletData_.clear(); dirichletData_.reserve(numFaces_);
elements_.reserve(numLocalScvs);
scvs_.reserve(numLocalScvs);
scvfs_.reserve(numFaces_);
dirichletData_.reserve(numFaces_);
localFaceData_.reserve(numGlobalScvfs);
// set up stuff related to sub-control volumes // set up stuff related to sub-control volumes
for (LocalIndexType scvIdxLocal = 0; scvIdxLocal < numLocalScvs; scvIdxLocal++) for (LocalIndexType scvIdxLocal = 0; scvIdxLocal < numLocalScvs; scvIdxLocal++)
...@@ -193,19 +188,13 @@ public: ...@@ -193,19 +188,13 @@ public:
// the neighboring scvs in local indices (order: 0 - inside scv, 1..n - outside scvs) // the neighboring scvs in local indices (order: 0 - inside scv, 1..n - outside scvs)
const auto& neighborScvIndicesLocal = indexSet.neighboringLocalScvIndices(faceIdxLocal); const auto& neighborScvIndicesLocal = indexSet.neighboringLocalScvIndices(faceIdxLocal);
// create local face data object for this face
localFaceData_.emplace_back(faceIdxLocal, neighborScvIndicesLocal[0], scvf.index());
// we will need as many omegas as scvs around the face
const auto numNeighborScvs = neighborScvIndicesLocal.size(); const auto numNeighborScvs = neighborScvIndicesLocal.size();
localFaceData_.emplace_back(faceIdxLocal, neighborScvIndicesLocal[0], scvf.index());
// create iv-local scvf object // create iv-local scvf object
if (scvf.boundary()) if (scvf.boundary())
{ {
const auto bcTypes = problem.boundaryTypes(elements_[neighborScvIndicesLocal[0]], scvf); if (problem.boundaryTypes(elements_[neighborScvIndicesLocal[0]], scvf).hasOnlyDirichlet())
if (bcTypes.hasOnlyDirichlet())
{ {
scvfs_.emplace_back(scvf, neighborScvIndicesLocal, numKnowns_++, /*isDirichlet*/true); scvfs_.emplace_back(scvf, neighborScvIndicesLocal, numKnowns_++, /*isDirichlet*/true);
dirichletData_.emplace_back(scvf.outsideScvIdx()); dirichletData_.emplace_back(scvf.outsideScvIdx());
...@@ -285,7 +274,8 @@ public: ...@@ -285,7 +274,8 @@ public:
//! returns the number of interaction volumes living around a vertex //! returns the number of interaction volumes living around a vertex
template< class NI > template< class NI >
static constexpr std::size_t numIVAtVertex(const NI& nodalIndexSet) { return 1; } static constexpr std::size_t numIVAtVertex(const NI& nodalIndexSet)
{ return 1; }
//! adds the iv index sets living around a vertex to a given container //! adds the iv index sets living around a vertex to a given container
//! and stores the the corresponding index in a map for each scvf //! and stores the the corresponding index in a map for each scvf
......
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