bound_eqfile_cart Function

public function bound_eqfile_cart(self, theta) result(bound)

Uses

Find the value of the major radius on the plasma boundary at given geometric theta.

Type Bound

abstract_eqfile_cart_geo_type

Arguments

Type IntentOptional Attributes Name
class(abstract_eqfile_cart_geo_type), intent(in) :: self
real, intent(in) :: theta

Return Value real


Contents

Source Code


Source Code

  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