Skip to content

Commit

Permalink
Replaced stk::mesh::copy_owned_to_shared with stk::mesh::parallel_min…
Browse files Browse the repository at this point in the history
… in TiogaSTKIface::post_connectivity_work for iblank=-1 values to take priority at shared nodes (#1240)
  • Loading branch information
itopcuoglu authored Feb 15, 2024
1 parent 16b20bf commit 3f6fe1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/overset/TiogaSTKIface.C
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ TiogaSTKIface::post_connectivity_work(const bool isDecoupled)
ScalarIntFieldType* ibf =
meta_.get_field<ScalarIntFieldType>(stk::topology::NODE_RANK, "iblank");
std::vector<const stk::mesh::FieldBase*> pvec{ibf};
stk::mesh::copy_owned_to_shared(bulk_, pvec);
stk::mesh::parallel_min(bulk_, {ibf});

for (auto& tb : blocks_) {
// Call update_iblanks again to assign holeNodes and fringeNodes vectors
Expand Down

0 comments on commit 3f6fe1d

Please sign in to comment.