Skip to content

Commit

Permalink
Fixed bug in which the regolith composition data was being written to…
Browse files Browse the repository at this point in the history
… the regolith thickness file
  • Loading branch information
daminton committed Jul 18, 2022
1 parent 79d94be commit 758791e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/io/io_write_regotrack.f90
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ subroutine io_write_regotrack(user,surf)
if (.not. associated(current)) exit ! We've reached the bottom of the linked list
stacks_num(i,j) = stacks_num(i,j) + 1
write(FMELT) current%regodata%meltfrac
write(FREGO) current%regodata%comp
write(FCOMP) current%regodata%meltfrac
write(FREGO) current%regodata%thickness
write(FCOMP) current%regodata%comp
write(FAGE) current%regodata%age(:)
current => current%next
end do
Expand Down

0 comments on commit 758791e

Please sign in to comment.