mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 22:26:08 -04:00
Fixed error in output module that caused failed compilation with gfortran.
This commit is contained in:
parent
9138678fd5
commit
6e0347a82f
1 changed files with 2 additions and 2 deletions
|
|
@ -536,7 +536,7 @@ contains
|
|||
write(ou, *) ' Surface Bins:' // trim(string)
|
||||
end if
|
||||
|
||||
if (t % n_bins(T_UNIVERSE)) then
|
||||
if (t % n_bins(T_UNIVERSE) > 0) then
|
||||
string = ""
|
||||
do i = 1, t % n_bins(T_UNIVERSE)
|
||||
uid = t % universe_bins(i) % scalar
|
||||
|
|
@ -546,7 +546,7 @@ contains
|
|||
write(ou, *) ' Material Bins:' // trim(string)
|
||||
end if
|
||||
|
||||
if (t % n_bins(T_MATERIAL)) then
|
||||
if (t % n_bins(T_MATERIAL) > 0) then
|
||||
string = ""
|
||||
do i = 1, t % n_bins(T_MATERIAL)
|
||||
uid = t % material_bins(i) % scalar
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue