getMua Function

private function getMua(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 getMua(this) result(res)
        !! Return \(\mu_a\) for the current SDF.
        class(sdf) :: this
        real(kind=wp) :: res

        res = this%value%optProps%value%mua

    end function getMua