setup_special_splines Subroutine

private subroutine setup_special_splines(self)

Type Bound

eeq_base_type

Arguments

Type IntentOptional Attributes Name
class(eeq_base_type), intent(inout) :: self

Contents

Source Code


Source Code

  subroutine setup_special_splines(self)
    use splines, only: new_periodic_spline
    use constants, only: twopi
    implicit none
    class(eeq_base_type), intent(in out) :: self
    self%rbound_spl = new_periodic_spline(self%thetab, self%r_bound, twopi, &
         drop_last_point = .true.)
  end subroutine setup_special_splines