mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
cmfd is now executed after every active cycle
This commit is contained in:
parent
c7577520b2
commit
0b878b76be
1 changed files with 6 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ program main
|
|||
end if
|
||||
|
||||
! call cmfd run
|
||||
call execute_cmfd()
|
||||
! call execute_cmfd()
|
||||
|
||||
! finalize run
|
||||
call finalize_run()
|
||||
|
|
@ -133,6 +133,11 @@ contains
|
|||
|
||||
! print cycle information
|
||||
|
||||
! run cmfd
|
||||
if (current_cycle > n_inactive) then
|
||||
call execute_cmfd()
|
||||
end if
|
||||
|
||||
! Turn tallies on once inactive cycles are complete
|
||||
if (current_cycle == n_inactive) then
|
||||
tallies_on = .true.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue