Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abstract_geo_type), | intent(in) | :: | self | |||
real, | intent(in) | :: | r | |||
real, | intent(in) | :: | theta |
real function invR (self, r, theta)
implicit none
class(abstract_geo_type), intent(in) :: self
real, intent (in) :: r, theta
invR = 1. / self%rpos(r, theta)
end function invR