Find the value of the major radius on the plasma boundary at given geometric theta.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(abstract_eqfile_cart_geo_type), | intent(in) | :: | self | |||
real, | intent(in) | :: | theta |
real function bound_eqfile_cart(self, theta) result(bound)
use splines, only: periodic_splint
implicit none
class(abstract_eqfile_cart_geo_type), intent(in) :: self
real, intent(in) :: theta
bound = periodic_splint(theta, self%rbound_spl)
end function bound_eqfile_cart