il_is_wfb Function

public elemental function il_is_wfb(il) result(is_wfb)

Returns true if the passed pitch angle grid point is considered the wfb.

Arguments

Type IntentOptional Attributes Name
integer, intent(in) :: il

Return Value logical


Contents

Source Code


Source Code

  elemental logical function il_is_wfb(il) result(is_wfb)
    implicit none
    integer, intent(in) :: il
    is_wfb = il == ng2 + 1
    ! If we want to improve the consistency of the wfb
    ! treatment we should hopefully rarely need to specificaly
    ! identify the wfb
  end function il_is_wfb