Skip to content

Commit

Permalink
Use safer dafault min_thickness = 1.0e-3; see COSIMA/access-om2#161
Browse files Browse the repository at this point in the history
  • Loading branch information
aekiss committed Aug 21, 2019
1 parent cc35eeb commit e0ddf1e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mom5/ocean_core/ocean_topog.F90
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ module ocean_topog_mod
! <DATA NAME="min_thickness" TYPE="real">
! min_thickness is only used for Mosaic grid. Since there is no kmt available
! in mosaic grid, need to set min_thickness to configure kmt based on ht and zw.
! Default min_thickness=1.0 metre.
! Default min_thickness=1.0e-3 metre.
! </DATA>
! <DATA NAME="kmt_recompute" TYPE="logical">
! To recompute the kmt array based on min_thickness. This step is not recommended
Expand Down Expand Up @@ -72,7 +72,7 @@ module ocean_topog_mod
logical :: flat_bottom = .false.
integer :: flat_bottom_kmt = 50
real :: flat_bottom_ht = 5500.0
real :: min_thickness = 1.0
real :: min_thickness = 1.0e-3
integer :: kmt_recompute_offset = 0
logical :: kmt_recompute = .false.
logical :: write_topog = .false.
Expand Down

0 comments on commit e0ddf1e

Please sign in to comment.