Skip to content

Commit

Permalink
fix probtype 1102
Browse files Browse the repository at this point in the history
  • Loading branch information
asalmgren committed Aug 31, 2024
1 parent 1575b68 commit b9b9e35
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions src/prob/prob_bc.H
Original file line number Diff line number Diff line change
Expand Up @@ -239,8 +239,17 @@ struct IncfloVelFill
norm_vel = 16.0 * (x*x*x*x - 2.0 * x*x*x + x*x);
}

if ( (bc.hi(dir) == amrex::BCType::ext_dir) ||
(bc.hi(dir) == amrex::BCType::direction_dependent && norm_vel <= 0.) )
#if (AMREX_SPACEDIM == 3)
if (1102 == probtype && j > domain_box.bigEnd(1))
{
int half_num_cells = domain_box.length(2) / 2;
if (k <= half_num_cells) {
vel(i,j,k,dcomp+nc) = -bcv_vel[amrex::Orientation(amrex::Direction::y,amrex::Orientation::high)][orig_comp+nc];
}
}
#endif
else if ( (bc.hi(dir) == amrex::BCType::ext_dir) ||
(bc.hi(dir) == amrex::BCType::direction_dependent && norm_vel <= 0.) )
{
if (nc == dir) {
vel(i,j,k,dcomp+nc) = norm_vel;
Expand Down

0 comments on commit b9b9e35

Please sign in to comment.