Get covalent radius for a given element symbol
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
character(len=*), | intent(in) | :: | sym |
Element symbol |
Covalent radius
elemental function get_covalent_rad_sym(sym) result(rad) !DEC$ ATTRIBUTES DLLEXPORT :: get_covalent_rad_sym !> Element symbol character(len=*), intent(in) :: sym !> Covalent radius real(wp) :: rad rad = get_covalent_rad(to_number(sym)) end function get_covalent_rad_sym