getAlbedo Function

private function getAlbedo(this) result(res)

Return albedo for the current SDF.

Type Bound

sdf

Arguments

Type IntentOptional Attributes Name
class(sdf) :: this

Return Value real(kind=wp)


Source Code

    function getAlbedo(this) result(res)
        !! Return albedo for the current SDF.

        class(sdf) :: this
        real(kind=wp) :: res

        res = this%value%optProps%value%albedo

    end function getAlbedo