Skip to content

Commit

Permalink
workaround of Nek5000#504
Browse files Browse the repository at this point in the history
  • Loading branch information
yslan authored Jun 6, 2023
1 parent 196f380 commit 2fd5a99
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/setup/setup.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -250,6 +250,7 @@ void nrsSetup(MPI_Comm comm, setupAide &options, nrs_t *nrs)
field.c_str());
}

/* FIXME: workaround of https://github.com/Nek5000/nekRS/issues/504
std::vector<mesh_t *> meshList;
meshList.push_back(nrs->_mesh);
if (nrs->meshV != nrs->_mesh) {
Expand All @@ -260,6 +261,10 @@ void nrsSetup(MPI_Comm comm, setupAide &options, nrs_t *nrs)
bcMap::checkBoundaryAlignment(msh);
bcMap::remapUnalignedBoundaries(msh);
}
*/

bcMap::checkBoundaryAlignment(msh);
bcMap::remapUnalignedBoundaries(msh);
}

nrs->NVfields = nrs->dim;
Expand Down

0 comments on commit 2fd5a99

Please sign in to comment.