Skip to content

Commit

Permalink
dOxyGenized subroutines in ice_spec.F90
Browse files Browse the repository at this point in the history
  Added dOxyGenized comments for all of the subroutines, functions and arguments
in ice_spec.F90.  All answers are bitwise identical.
  • Loading branch information
Hallberg-NOAA committed Jul 2, 2018
1 parent a819446 commit b1d2aec
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions src/ice_spec.F90
Original file line number Diff line number Diff line change
Expand Up @@ -40,16 +40,19 @@ module ice_spec_mod
contains

!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!
! get_sea_surface - get SST, ice concentration and thickness from data !
!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!
!> get_sea_surface obtains SST, ice concentration and thickness from data
subroutine get_sea_surface(Time, ts, cn, iceh, ice_domain, ice_domain_end, ts_in_K)
type (time_type), intent(in) :: Time
real, dimension(:, :), intent(out) :: ts
real, dimension(size(ts,1),size(ts,2),2), intent(out) :: cn
real, dimension(size(ts,1),size(ts,2)), intent(out) :: iceh
type(domain2d), optional, intent(in) :: ice_domain
type(domain2d), optional, intent(in) :: ice_domain_end
logical, optional, intent(in) :: ts_in_K
type (time_type), intent(in) :: Time !< The current model time
real, dimension(:, :), intent(out) :: ts !< The surface temperature in degC or degK
real, dimension(size(ts,1),size(ts,2),2), &
intent(out) :: cn !< The fractional ocean and ice concentration
real, dimension(size(ts,1),size(ts,2)), &
intent(out) :: iceh !< The ice thickness in m
type(domain2d), optional, intent(in) :: ice_domain !< The domain used to read this data
type(domain2d), optional, intent(in) :: ice_domain_end !< If present reset the data override ice
!! domain back to this one at the end of this routine
logical, optional, intent(in) :: ts_in_K !< If true, return the surface temperature in deg K.
!! The default is true.

real, dimension(size(ts,1),size(ts,2)) :: sst, icec

Expand Down

0 comments on commit b1d2aec

Please sign in to comment.