seasonal_lower_bound Function

private pure function seasonal_lower_bound(this) result(bound_array)

Indicates that one layer of cells at the lower boundary in the first dimension should be omitted. This is appropriate for Dirichlet boundary conditions.

Arguments

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

Return Value integer, dimension(2)


Contents

Source Code


Source Code

  pure function seasonal_lower_bound(this) result(bound_array)
    !* Author: Chris MacMackin
    !  Date: October 2017
    !
    ! Indicates that one layer of cells at the lower boundary in the
    ! first dimension should be omitted. This is appropriate for
    ! Dirichlet boundary conditions.
    !
    class(seasonal_glacier_boundary), intent(in) :: this
    integer, dimension(2) :: bound_array
    bound_array = [1,0]
  end function seasonal_lower_bound