sheet_thickness Function

private pure function sheet_thickness(this) result(thickness)

Returns the thickness of the ice sheet across its domain.

Arguments

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

Return Value class(scalar_field), pointer

The ice thickness.


Contents

Source Code


Source Code

  pure function sheet_thickness(this) result(thickness)
    !* Author: Christopher MacMackin
    !  Date: April 2016
    !
    ! Returns the thickness of the ice sheet across its domain.
    !
    class(ice_sheet), intent(in) :: this
    class(scalar_field), pointer :: thickness !! The ice thickness.
  end function sheet_thickness