Computes the value of the valence kinetic energy density at r @param ps is a handle to the psml information @param r is the radius ??? It returns the valence kinetic energy density integrated over ??? solid angle, so that KE_val = int{ valrr }
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ps_t), | intent(in) | :: | ps | |||
real(kind=dp), | intent(in) | :: | r |
function ps_ValenceKineticDensity_Value(ps,r) result(val)
type(ps_t), intent(in) :: ps
real(dp), intent(in) :: r
real(dp) :: val
val = ps_GetValue(ps%valence_kinetic_energy_density%kin_edens_val,r)
end function ps_ValenceKineticDensity_Value