Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/2d/shallow/ginit.f
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@ subroutine ginit(msave, first, nvar, naux, start_time)
node(store1,mptr) = loc
if (naux .gt. 0) then
locaux = igetsp(mitot*mjtot*naux)
do k = 1, mitot*mjtot*naux, naux ! only set first component of aux to signal
! do k = 1, mitot*mjtot*naux, naux ! only set first component of aux to signal
do k = 1, mitot*mjtot*naux ! KRB 2026/08/26 - set all components to NEEDS_TO_BE_SET rather than just aux(1)
alloc(locaux+k-1) = NEEDS_TO_BE_SET ! new system checks this val before setting
end do

Expand Down