sheet_temperature Function

private pure function sheet_temperature(this) result(temperature)

Returns the density of the ice in the sheet, which is assumed to be uniform across its domain.

Arguments

Type IntentOptional AttributesName
class(ice_sheet), intent(in) :: this

Return Value real(kind=r8)

The ice density.


Contents

Source Code


Source Code

  pure function sheet_temperature(this) result(temperature)
    !* Author: Christopher MacMackin
    !  Date: April 2016
    !
    ! Returns the density of the ice in the sheet, which is assumed to be
    ! uniform across its domain.
    !
    class(ice_sheet), intent(in) :: this
    real(r8)                     :: temperature !! The ice density.
  end function sheet_temperature