Skip to content

Commit

Permalink
add preprocessor to ensure we're in 2d or more
Browse files Browse the repository at this point in the history
  • Loading branch information
zhichen3 committed Sep 11, 2024
1 parent 3631380 commit f9df3a7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Source/hydro/Castro_ctu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,13 @@ Castro::consup_hydro(const Box& bx,

U_new(i,j,k,UMX) += - dt * (qx(i+1,j,k,GDPRES) - qx(i,j,k,GDPRES)) / geomdata.CellSize()[0];

#if AMREX_SPACEDIM >= 2
} else if (n == UMY && !mom_flux_has_p(1, 1, geomdata.Coord())) {
// Add gradp term to polar(theta) momentum equation for Spherical 2D geometry

Real r = geom.ProbLoArray()[0] + (static_cast<Real>(i) + 0.5_rt) * geomdata.CellSize()[0];
U_new(i,j,k,UMY) += - dt * (qy(i,j+1,k,GDPRES) - qy(i,j,k,GDPRES)) / (r * geomdata.CellSize()[1]);

#endif
}
});
}
Expand Down

0 comments on commit f9df3a7

Please sign in to comment.