mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-27 13:45:36 -04:00
Merge pull request #585 from paulromano/write-summary-by-default
Write summary.h5 by default
This commit is contained in:
commit
41e3c658ce
2 changed files with 3 additions and 3 deletions
|
|
@ -390,7 +390,7 @@ module global
|
|||
type(SetInt) :: sourcepoint_batch
|
||||
|
||||
! Various output options
|
||||
logical :: output_summary = .false.
|
||||
logical :: output_summary = .true.
|
||||
logical :: output_xs = .false.
|
||||
logical :: output_tallies = .true.
|
||||
|
||||
|
|
|
|||
|
|
@ -905,8 +905,8 @@ contains
|
|||
if (check_for_node(node_output, "summary")) then
|
||||
call get_node_value(node_output, "summary", temp_str)
|
||||
temp_str = to_lower(temp_str)
|
||||
if (trim(temp_str) == 'true' .or. &
|
||||
trim(temp_str) == '1') output_summary = .true.
|
||||
if (trim(temp_str) == 'false' .or. &
|
||||
trim(temp_str) == '0') output_summary = .false.
|
||||
end if
|
||||
|
||||
! Check for cross sections option
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue