Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
files load without segfaulting
  • Loading branch information
Austin Blevins committed Mar 30, 2023
1 parent a09e396 commit fc85fda
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/io/io_read_regotrack.f90
Original file line number Diff line number Diff line change
Expand Up @@ -179,17 +179,17 @@ subroutine io_read_regotrack(user,surf,domain)
! agei(MAXAGEBINS*k - (MAXAGEBINS-q)) = age(i,j,q)
! end do

regotopi(k) = regotop(k)
regotopi(k) = thickness(k)
compi(k) = comp(k)
ejmi(k) = ejm(k)
ejmfi(k) = ejmf(k)
mfi(k) = meltfrac(k)
do q=1,domain%rcnum
dfi(q*k) = distfrac(q,k) !or is it (k,q) ?
mdi(q*k) = meltdist(q,k)
dfi(q*k) = meltdist(q,k)
mdi(q*k) = distvol(q,k)
end do
do q=1,MAXAGEBINS
agei(MAXAGEBINS*k - (MAXAGEBINS-q)) = age(q,k) !again, (k,q)?
agei(MAXAGEBINS*k - (MAXAGEBINS-q)) = age(q,k)
end do

end do
Expand Down

0 comments on commit fc85fda

Please sign in to comment.