ParLen Function

private pure function ParLen(me) result(len)

Return the length of the parameter space, i.e., , where is the highest index of the knot vector.

Arguments

Type IntentOptional AttributesName
class(basis), intent(in) :: me

Return Value real(kind=wp)

Length of the parameter space


Contents

Source Code


Source Code

        pure function ParLen(me) result(len)
            class(basis), intent(in)    :: me
            real(wp)                    :: len !< Length of the parameter space

            len = me%kv(me%m) - me%kv(0)
        end function ParLen