Skip to content

Commit

Permalink
Merge pull request #331 from evazlimen/dev-noh_boundary_conditions
Browse files Browse the repository at this point in the history
Allow Noh boundary conditions to be set on dev
  • Loading branch information
evaneschneider authored Sep 14, 2023
2 parents 8e8d0be + b2b06a6 commit 9209462
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/grid/boundary_conditions.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -511,8 +511,7 @@ void Grid3D::Custom_Boundary(char bcnd[MAXLEN])
if (strcmp(bcnd, "noh") == 0) {
// from grid/cuda_boundaries.cu
Noh_Boundary();
}
if (strcmp(bcnd, "wind") == 0) {
} else if (strcmp(bcnd, "wind") == 0) {
// from grid/cuda_boundaries.cu
Wind_Boundary();
} else {
Expand Down

0 comments on commit 9209462

Please sign in to comment.