Skip to content

Commit

Permalink
Added an omitted dOxygen comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Hallberg-NOAA committed Apr 15, 2020
1 parent ae944c2 commit 87054b4
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/equation_of_state/MOM_EOS.F90
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ module MOM_EOS
calculate_density_derivs_HI_1d
end interface calculate_density_derivs

!> Calculate the derivatives of specific volume with temperature and salinity from T, S, and P
interface calculate_specific_vol_derivs
module procedure calculate_spec_vol_derivs_array, calc_spec_vol_derivs_US, calc_spec_vol_derivs_HI_1d
end interface calculate_specific_vol_derivs
Expand Down Expand Up @@ -954,7 +955,8 @@ subroutine calc_spec_vol_derivs_US(T, S, pressure, dSV_dT, dSV_dS, start, npts,

end subroutine calc_spec_vol_derivs_US

!> Calls the appropriate subroutine to calculate specific volume derivatives for an array.
!> Calls the appropriate subroutine to calculate specific volume derivatives for array inputs
!! using array extents determined from a hor_index_type..
subroutine calc_spec_vol_derivs_HI_1d(T, S, pressure, dSV_dT, dSV_dS, HI, EOS, US, halo)
type(hor_index_type), intent(in) :: HI !< The horizontal index structure
real, dimension(HI%isd:HI%ied), intent(in) :: T !< Potential temperature referenced to the surface [degC]
Expand Down

0 comments on commit 87054b4

Please sign in to comment.