Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abstract_eqfile_cart_geo_type), | intent(in) | :: | self | |||
real, | intent(in) | :: | r | |||
real, | intent(in) | :: | theta |
pure real function rpos_eqfile_cart (self, r, theta) result(rpos)
implicit none
class(abstract_eqfile_cart_geo_type), intent(in) :: self
real, intent (in) :: r, theta
rpos = self%R_mag + r * cos(theta)
end function rpos_eqfile_cart