ground_melt Function

private function ground_melt(this) result(melt)

Computes and returns the melt rate at the bottom of the ice sheet due to interaction with the ground.

Arguments

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

Return Value class(scalar_field), pointer

The melt rate at the base of the ice sheet.


Contents

Source Code


Source Code

  function ground_melt(this) result(melt)
    !* Author: Christopher MacMackin
    !  Date: April 2016
    !
    ! Computes and returns the melt rate at the bottom of the ice
    ! sheet due to interaction with the ground.
    !
    class(ground), intent(in)    :: this
    class(scalar_field), pointer :: melt
      !! The melt rate at the base of the ice sheet.
  end function ground_melt