Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed bug in melt sheet thickness calculation
  • Loading branch information
Austin Blevins committed Feb 21, 2023
1 parent 0f3ecb1 commit 87674c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/regolith/regolith_interior.f90
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ subroutine regolith_interior(user,surf,crater,domain,incval,nmeltsheet,vmeltshee

!Executable code

hmeltsheet = vmeltsheet / (nmeltsheet*user%gridsize*user%gridsize)
hmeltsheet = vmeltsheet / (nmeltsheet*user%pix*user%pix)
allocate(newlayer%meltdist(domain%rcnum))

inc = incval
Expand Down

0 comments on commit 87674c1

Please sign in to comment.