tallies are now considered for reset after each cmfd calculation

This commit is contained in:
Bryan Herman 2012-04-13 13:54:54 -07:00
parent a6ee9ac9b6
commit 6c2063a210

View file

@ -5,6 +5,7 @@ module cmfd_execute
use global, only: cmfd,cmfd_only,time_cmfd,master,rank,mpi_err, &
& current_batch,n_inactive,n_batches,n_procs, &
& n_procs_cmfd,neut_feedback
use tally, only: tally_reset
use timing, only: timer_start,timer_stop,timer_reset
@ -86,6 +87,9 @@ contains
# endif
end if
! perform a tally reset
call tally_reset()
end subroutine execute_cmfd
!==============================================================================