Closed mnlevy1981 closed 3 weeks ago
There were two instances of indexing arrays out of bounds:
kfsc>=1
iFaceHeight(ksfc-1)
iFaceHeight(ksfc)
kbl
nint(CS%kOBL(i,j))
nint()
ke+1
int(CS%kOBL(i,j,))
We need to verify that these are scientifically correct, they just seemed like easy ways to avoid exceeding the array bounds
There were two instances of indexing arrays out of bounds:
kfsc>=1
, but we were looking foriFaceHeight(ksfc-1)
; I changed this toiFaceHeight(ksfc)
insteadkbl
was set tonint(CS%kOBL(i,j))
, andnint()
would round up toke+1
in some instances so I changed this toint(CS%kOBL(i,j,))
insteadWe need to verify that these are scientifically correct, they just seemed like easy ways to avoid exceeding the array bounds