Skip to content

Commit

Permalink
complete the explanation of the correction of face refinement.
Browse files Browse the repository at this point in the history
  • Loading branch information
junxiW committed Oct 19, 2023
1 parent 39b2de4 commit 3fc5380
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ugbase/lib_grid/refinement/global_fractured_media_refiner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -400,8 +400,9 @@ perform_refinement()
}
}

// instead of not marked faces, the cloning condition is changed for those, no edges of which will be refined. They will be cloned to the next level
// please test again, if it works for parallel computing.
// instead of not marked faces, the cloning condition is changed for those, of which no edges will be refined.
// It means, a face will be cloned to the next level if none of its edges should be refined.
// There are no such cases for testing. If such faces exist in your case, please test to ensure if it works for parallel computing.
if(vEdgeVrts.size()==0){
fd.set_num_vertices(vVrts.size());
for(size_t i = 0; i < vVrts.size(); ++i)
Expand Down

0 comments on commit 3fc5380

Please sign in to comment.