mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 21:55:41 -04:00
Merge pull request #311 from paulromano/plot-nuclide-tally-bug
Don't read tallies.xml when OpenMC is run in plotting mode.
This commit is contained in:
commit
489b6a64eb
1 changed files with 2 additions and 2 deletions
|
|
@ -33,10 +33,10 @@ contains
|
|||
subroutine read_input_xml()
|
||||
|
||||
call read_settings_xml()
|
||||
if ((run_mode /= MODE_PLOTTING)) call read_cross_sections_xml()
|
||||
if (run_mode /= MODE_PLOTTING) call read_cross_sections_xml()
|
||||
call read_geometry_xml()
|
||||
call read_materials_xml()
|
||||
call read_tallies_xml()
|
||||
if (run_mode /= MODE_PLOTTING) call read_tallies_xml()
|
||||
if (cmfd_run) call configure_cmfd()
|
||||
|
||||
end subroutine read_input_xml
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue