mirror of
https://github.com/openmc-dev/openmc.git
synced 2026-07-28 14:15:42 -04:00
fixed an index error in core map routine
This commit is contained in:
parent
3bc1f734fc
commit
2b7d2d3908
1 changed files with 2 additions and 2 deletions
|
|
@ -435,11 +435,11 @@ contains
|
|||
nz = cmfd % indices(3)
|
||||
|
||||
! begin loops over spatial indices
|
||||
ZLOOP: do i = 1,nz
|
||||
ZLOOP: do k = 1,nz
|
||||
|
||||
YLOOP: do j = 1,ny
|
||||
|
||||
XLOOP: do k = 1,nx
|
||||
XLOOP: do i = 1,nx
|
||||
|
||||
! check for reflector
|
||||
if (cmfd % coremap(i,j,k) == 1) then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue