getKappa Function

private function getKappa(this) result(res)

Return for the current SDF

Type Bound

sdf

Arguments

Type IntentOptional Attributes Name
class(sdf) :: this

Return Value real(kind=wp)


Source Code

    function getKappa(this) result(res)
        !! Return \(\kappa\) for the current SDF
        class(sdf) :: this
        real(kind=wp) :: res

        res = this%value%optProps%value%kappa

    end function getKappa