Report Typos and Errors    
Semi-Lagrangian Library
Modular library for kinetic and gyrokinetic simulations of plasmas in fusion energy devices.
Private Member Functions | List of all members
interpolate_2d_array Interface Reference

Compute interpolated values of n*m points. More...

Private Member Functions

subroutine interpolate_2d_array (this, num_points1, num_points2, data_in, eta1, eta2, data_out)
 

Detailed Description

Compute interpolated values of n*m points.

Definition at line 109 of file sll_m_interpolators_2d_base.F90.

Constructor & Destructor Documentation

◆ interpolate_2d_array()

subroutine interpolate_2d_array ( class(sll_c_interpolator_2d), intent(inout)  this,
integer(kind=i32), intent(in)  num_points1,
integer(kind=i32), intent(in)  num_points2,
real(kind=f64), dimension(:, :), intent(in)  data_in,
real(kind=f64), dimension(:, :), intent(in)  eta1,
real(kind=f64), dimension(:, :), intent(in)  eta2,
real(kind=f64), dimension(num_points1, num_points2), intent(out)  data_out 
)
private
Parameters
[in,out]thisinterpolator object
[in]num_points1number of points along first dimension
[in]num_points2number of points along second dimension
[in]data_infunction values
[in]eta1values of the first coordinate for interpolation points
[in]eta2values of the second coordinate for interpolation points
[out]data_outinterpolated values

Definition at line 109 of file sll_m_interpolators_2d_base.F90.

    Report Typos and Errors