Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixed a bug where DP numbers were given to a SP array
  • Loading branch information
Austin Blevins committed Jun 26, 2023
1 parent 32df869 commit 3b69dbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/regolith/regolith_mix.f90
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ subroutine regolith_mix(user,surfi,mixing_depth,domain)

newlayer%thickness = 0.0_DP
newlayer%comp = 0.0_DP
newlayer%age(:) = 0.0_DP
newlayer%age(:) = 0.0_SP
allocate(newlayer%distvol(1+domain%rcnum))
newlayer%distvol(:) = 0.0_DP
newlayer%ejm = 0.0_DP
Expand Down

0 comments on commit 3b69dbd

Please sign in to comment.