Skip to content

Commit

Permalink
Allow a plotting calculation without BCs
Browse files Browse the repository at this point in the history
  • Loading branch information
smharper committed Nov 3, 2016
1 parent 244da85 commit 7880d4f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/input_xml.F90
Expand Up @@ -1636,8 +1636,10 @@ subroutine read_geometry_xml()

! Check to make sure a boundary condition was applied to at least one
! surface
if (.not. boundary_exists) then
call fatal_error("No boundary conditions were applied to any surfaces!")
if (run_mode /= MODE_PLOTTING) then
if (.not. boundary_exists) then
call fatal_error("No boundary conditions were applied to any surfaces!")
end if
end if

! Determine opposite side for periodic boundaries
Expand Down

0 comments on commit 7880d4f

Please sign in to comment.