Skip to content

Commit

Permalink
dOxyGenized elements of SIS_continuity_CS
Browse files Browse the repository at this point in the history
  Added dOxyGenized comments for all elements of SIS_continuity_CS.  All answers
are bitwise identical.
  • Loading branch information
Hallberg-NOAA committed Jul 3, 2018
1 parent 1278b69 commit 521051b
Showing 1 changed file with 16 additions and 15 deletions.
31 changes: 16 additions & 15 deletions src/SIS_continuity.F90
Original file line number Diff line number Diff line change
Expand Up @@ -61,22 +61,23 @@ module SIS_continuity

integer :: id_clock_update, id_clock_correct

!> The control structure with parameters regulating the continuity solver
type, public :: SIS_continuity_CS ; private
type(SIS_diag_ctrl), pointer :: diag ! A structure that is used to regulate the
! timing of diagnostic output.
logical :: use_upwind2d ! If true, use the non-split upwind scheme that was
! used in older versions of SIS.
logical :: upwind_1st ! If true, use a directionally-split first-order
! upwind scheme.
logical :: monotonic ! If true, use the Colella & Woodward monotonic
! limiter; otherwise use a simple positive
! definite limiter.
logical :: simple_2nd ! If true, use a simple second order (arithmetic
! mean) interpolation of the edge values instead
! of the higher order interpolation.
logical :: vol_CFL ! If true, use the ratio of the open face lengths
! to the tracer cell areas when estimating CFL
! numbers.
type(SIS_diag_ctrl), pointer :: diag => NULL() !< A structure that is used to regulate the
!! timing of diagnostic output.
logical :: use_upwind2d !< If true, use the non-split upwind scheme that was
!! used in older versions of SIS.
logical :: upwind_1st !< If true, use a directionally-split first-order
!! upwind scheme.
logical :: monotonic !< If true, use the Colella & Woodward monotonic
!! limiter; otherwise use a simple positive
!! definite limiter.
logical :: simple_2nd !< If true, use a simple second order (arithmetic
!! mean) interpolation of the edge values instead
!! of the higher order interpolation.
logical :: vol_CFL !< If true, use the ratio of the open face lengths
!! to the tracer cell areas when estimating CFL
!! numbers.
end type SIS_continuity_CS

type :: loop_bounds_type ; private
Expand Down

0 comments on commit 521051b

Please sign in to comment.