Skip to content

Commit

Permalink
Reduced the size of the regolith buffer to prevent underflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
daminton committed Jul 18, 2022
1 parent 758791e commit 5be9bef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util/util_init_list.f90
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ subroutine util_init_list(regolayer,initstat)
if (allocstat == 0) then
initstat = .true.
nullify(regolayer%next)
regolayer%regodata%thickness = VBIG ! This generates a buffer layer that the model should never reach if the run is structured properly
regolayer%regodata%thickness = VBIG / 1e6_DP ! This generates a buffer layer that the model should never reach if the run is structured properly
regolayer%regodata%comp = 0.0_DP
regolayer%regodata%meltfrac = 0.0_DP
regolayer%regodata%porosity = 0.0_DP
Expand Down

0 comments on commit 5be9bef

Please sign in to comment.