Skip to content

Commit

Permalink
changed EB bc back to dev branch implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoacc95 committed Mar 6, 2025
1 parent 2b019be commit ae30a06
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions Source/EmbeddedBoundary/EmbeddedBoundaryInit.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ web::MarkUpdateCellsStairCase (
// these are the neighboring cells for the nodal gripoint at index i.
// If `eb_update_arr` is cell-centerd in a given direction, we only need to check
// the cell at the same position (e.g., in the first dimension: the cell at index i).
/*

int const i_start = ( index_type.nodeCentered(0) )? i-1 : i;
#if AMREX_SPACEDIM > 1
int const j_start = ( index_type.nodeCentered(1) )? j-1 : j;
Expand All @@ -193,11 +193,6 @@ web::MarkUpdateCellsStairCase (
#else
int const k_start = k;
#endif
*/
// quick fix for Hybrid solver with EB
int const i_start = i;
int const j_start = j;
int const k_start = k;

// Loop over neighboring cells
int eb_update_flag = 1;
Expand Down

0 comments on commit ae30a06

Please sign in to comment.