dallaston2015_lower_type Function

private pure function dallaston2015_lower_type(this) result(bound_type)

Specifies that the lower boundary in the first dimension has Dirichlet boundary conditions.

Arguments

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

Return Value integer, dimension(:),allocatable


Contents


Source Code

  pure function dallaston2015_lower_type(this) result(bound_type)
    !* Author: Chris MacMackin
    !  Date: January 2017
    !
    ! Specifies that the lower boundary in the first dimension has
    ! Dirichlet boundary conditions.
    !
    class(dallaston2015_glacier_boundary), intent(in) :: this
    integer, dimension(:), allocatable  :: bound_type
    bound_type = [dirichlet, free_boundary]
  end function dallaston2015_lower_type