Splines computation and interpolation.
sll_c_bsplines , &
...
class(sll_c_bsplines), allocatable :: basis_x1
class(sll_c_bsplines), allocatable :: basis_x2
type(sll_t_spline_2d) :: spline_2d
type(sll_t_spline_interpolator_2d) :: interp_2d
real(wp), allocatable :: breaks_x2(:)
real(wp), allocatable :: tau_x1(:)
real(wp), allocatable :: tau_x2(:)
real(wp), allocatable :: gtau(:,:)
...
call sll_s_bsplines_new( basis_x1, degree=7, periodic=.false., xmin=0.0_wp, xmax=1.0_wp, ncells=100 )
call sll_s_bsplines_new( basis_x2, degree=4, periodic=.true. , xmin=0.0_wp, xmax=1.0_wp, ncells= 40, breaks_x2 )
call spline_2d % init( basis_x1, basis_x2 )
call interp_2d % init( &
basis_x1, &
basis_x2, &
bc_xmin = [sll_p_greville, sll_p_periodic], &
bc_xmax = [sll_p_greville, sll_p_periodic] )
call interp_2d % get_interp_points( tau_x1, tau_x2 )
allocate( gtau( size(tau_x1), size(tau_x2) ) )
...
call interp_2d % compute_interpolant( spline_2d, gtau )
write(*,*) spline_2d % eval( x1=0.5_wp, x2=0.5_wp )
write(*,*) spline_2d % bcoef(1,1)
Access point to B-splines of arbitrary degree providing factory function.
subroutine, public sll_s_bsplines_new(bsplines, degree, periodic, xmin, xmax, ncells, breaks)
Allocate and initialize uniform or non-uniform B-splines.
Module for tensor-product 2D splines.
Interpolator for 2D tensor-product splines of arbitrary degree, on uniform and non-uniform grids (dir...
2D tensor-product spline interpolator