Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ps_t), | intent(in) | :: | ps | |||
integer, | intent(in) | :: | i | |||
real(kind=dp), | intent(in) | :: | r |
function ps_Projector_Value(ps,i,r) result(val)
!+ display: private
type(ps_t), intent(in) :: ps
integer, intent(in) :: i
real(dp), intent(in) :: r
real(dp) :: val
call check_index(i,size(ps%nl_table),"proj")
val = ps_GetValue(ps%nl_table(i)%p%proj,r)
end function ps_Projector_Value