From 971b2cc8c4347a148f8b9aaf089ff4e43d55b565 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Thu, 19 Jan 2012 23:30:09 -0500 Subject: [PATCH] Fixed plots to work with reflective boundary conditions. --- src/plot.F90 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plot.F90 b/src/plot.F90 index 77ae883c03..673e8946e8 100644 --- a/src/plot.F90 +++ b/src/plot.F90 @@ -170,7 +170,7 @@ contains ! Since boundary conditions are disabled in plotting mode, we need ! to manually add the last segment - if (surfaces(abs(surface_crossed)) % bc == BC_VACUUM) then + if (surfaces(abs(surface_crossed)) % bc /= BC_TRANSMIT) then p % coord0 % xyz(1) = last_x_coord write(UNIT=UNIT_PLOT) p % coord0 % xyz, 0 exit