mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-29 06:35:48 -04:00
Merge pull request #1076 from nelsonag/summary_fix
Fix error in summary:write_nuclides and write_materials
This commit is contained in:
commit
94d973e5f0
1 changed files with 5 additions and 5 deletions
|
|
@ -82,9 +82,9 @@ contains
|
|||
integer(HID_T) :: nuclide_group
|
||||
integer(HID_T) :: macro_group
|
||||
integer :: i
|
||||
character(12), allocatable :: nuc_names(:)
|
||||
character(12), allocatable :: macro_names(:)
|
||||
real(8), allocatable :: awrs(:)
|
||||
character(kind=C_CHAR, len=20), allocatable :: nuc_names(:)
|
||||
character(kind=C_CHAR, len=20), allocatable :: macro_names(:)
|
||||
real(C_DOUBLE), allocatable :: awrs(:)
|
||||
integer :: num_nuclides
|
||||
integer :: num_macros
|
||||
integer :: j
|
||||
|
|
@ -172,8 +172,8 @@ contains
|
|||
integer :: k
|
||||
integer :: n
|
||||
integer :: err
|
||||
character(20), allocatable :: nuc_names(:)
|
||||
character(20), allocatable :: macro_names(:)
|
||||
character(kind=C_CHAR, len=20), allocatable :: nuc_names(:)
|
||||
character(kind=C_CHAR, len=20), allocatable :: macro_names(:)
|
||||
real(8) :: volume
|
||||
real(8), allocatable :: nuc_densities(:)
|
||||
integer :: num_nuclides
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue