Skip to content

Commit

Permalink
everything should work up until mixing
Browse files Browse the repository at this point in the history
  • Loading branch information
Austin Michael Blevins committed Dec 13, 2022
1 parent 845767d commit 593a20c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions src/init/init_regolith_stack.f90
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ subroutine init_regolith_stack(user,surf,domain)
bedrock%meltfrac = 0._DP
bedrock%comp = 0._DP
bedrock%age(:) = 0.0_SP
allocate(bedrock%meltdist(domain%rcnum))
bedrock%meltdist(:) = 0.0_SP

do yp = 1, user%gridsize
do xp = 1, user%gridsize
Expand Down
3 changes: 1 addition & 2 deletions src/io/io_write_regotrack.f90
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,7 @@ subroutine io_write_regotrack(user,surf,domain)
thickness(k) = current(k)%thickness
comp(k) = current(k)%comp
age(:,k) = current(k)%age(:)
write(*,*) size(current(k)%age)
write(*,*) size(current(k)%meltdist)
!write(*,*) i, j
meltdist(:,k) = current(k)%meltdist(:)

end do
Expand Down

0 comments on commit 593a20c

Please sign in to comment.