update_opticalProp_t Subroutine

private subroutine update_opticalProp_t(this, wavelength)

Type Bound

opticalProp_t

Arguments

Type IntentOptional Attributes Name
class(opticalProp_t), intent(inout) :: this
real(kind=wp), intent(out) :: wavelength

Source Code

    subroutine update_opticalProp_t(this, wavelength)

        class(opticalProp_t), intent(inout) :: this
        real(kind=wp),        intent(out)   :: wavelength

        call this%value%update(wavelength)

    end subroutine update_opticalProp_t