Skip to content

Commit

Permalink
Added dOxyGen comments for calc_isoneutral_slopes
Browse files Browse the repository at this point in the history
  • Loading branch information
Hallberg-NOAA committed May 3, 2018
1 parent 705471f commit d3ea8c9
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions src/core/MOM_isopycnal_slopes.F90
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,14 @@ subroutine calc_isoneutral_slopes(G, GV, h, e, tv, dt_kappa_smooth, &
real, dimension(SZI_(G),SZJ_(G),SZK_(G)), intent(in) :: h !< Layer thicknesses, in H (usually m or kg m-2)
real, dimension(SZI_(G),SZJ_(G),SZK_(G)+1), intent(in) :: e !< Interface heights (m)
type(thermo_var_ptrs), intent(in) :: tv !< A structure pointing to various thermodynamic variables
real, intent(in) :: dt_kappa_smooth
real, intent(in) :: dt_kappa_smooth !< A vertical diffusive smoothing timescale, in s.
real, dimension(SZIB_(G),SZJ_(G),SZK_(G)+1), intent(inout) :: slope_x !< Isopycnal slope in i-direction (nondim)
real, dimension(SZI_(G),SZJB_(G),SZK_(G)+1), intent(inout) :: slope_y !< Isopycnal slope in j-direction (nondim)
real, dimension(SZIB_(G),SZJ_(G),SZK_(G)+1), intent(inout) :: N2_u !< Brunt-Vaisala frequency squared at u-points (s-2)
real, dimension(SZI_(G),SZJB_(G),SZK_(G)+1), intent(inout) :: N2_v !< Brunt-Vaisala frequency squared at u-points (s-2)
optional :: N2_u, N2_v
integer, optional, intent(in) :: halo !< Halo width over which to compute
real, dimension(SZIB_(G),SZJ_(G),SZK_(G)+1), &
optional, intent(inout) :: N2_u !< Brunt-Vaisala frequency squared at u-points (s-2)
real, dimension(SZI_(G),SZJB_(G),SZK_(G)+1), &
optional, intent(inout) :: N2_v !< Brunt-Vaisala frequency squared at u-points (s-2)
integer, optional, intent(in) :: halo !< Halo width over which to compute
! Local variables
real, dimension(SZI_(G), SZJ_(G), SZK_(G)) :: &
T, & ! The temperature (or density) in C, with the values in
Expand Down

0 comments on commit d3ea8c9

Please sign in to comment.