sparse_grid_cc


sparse_grid_cc, a MATLAB code which can be used to compute the points and weights of a Smolyak sparse grid, based on a 1-dimensional Clenshaw-Curtis quadrature rule, to be used for efficient and accurate quadrature in multiple dimensions.

One way of looking at the construction of sparse grids is to assume that we start out by constructing a (very dense) product grid. We will assume for now that the order, that is, the number of points used in each component grid, is the same for all dimensions. Moreover, we will assume that the order is a power of 2 plus one, so that we have a natural relationship between the order and the logarithm base 2 of the order minus 1:


        order = 2level + 1
      
except that for the special case of level=0 we assign order=1. (If we used our formula, then this case would give us order=2 instead.

Thus, if we allow level to grow, the order roughly doubles, as follows:
LevelOrder
0 1
1 3
2 5
3 9
4 17
5 33
6 65
7 129
8 257
9 513
10 1025

To keep things simple, let us begin by supposing we are selecting points for a grid to be used in an interpolation or quadrature rule. If you successively compute the locations of the points of each level, you will probably see that the points of a level are all included in the grid associated with the next level. (This is not guaranteed for all rules; it's simply a property of the way most such grids are defined!).

This nesting property is very useful. For one thing, it means that when if we've computed a grid of one level, and now proceed to the next, then all the information associated with the current level (point location, the value of functions at those points) is still useful for the next level, and will save us some computation time as well. This also means that, when we have reached a particular level, all the previous levels are still available to us, with no extra storage. These considerations make it possible, for instance, to do efficient and convenient error estimation.

When we move to a problem whose geometry is two-dimensional or more, we can still take the same approach. However, when working in multidimensional geometry, it is usually not a good idea to form a grid using the product of 1D grids, especially when we are determining the order using the idea of levels. Especially in this case, if we go to the next level in each dimension, the total number of points would increase by a factor of roughly 2 to the spatial dimension. Just a few such steps in, say, 6 dimensions, and we would be far beyond our computational capacity.

Instead, in multidimensions, the idea is to construct a sparse grid, which can be thought of in one of two ways:

(There is still a lot of explaining to do to get from the one-dimensional levels to the N-dimensional levels and the selection of the low-level product grids that sum up to the sparse grid...)

Once the grid indices of the sparse grid points have been selected, there are a variety of schemes for distributing the points. We consider closed quadrature rules, in which the endpoints of the interval are included. The uniform scheme, known as the Newton Cotes Closed rule, is easy to understand. However, it has been observed that greater accuracy and stability can be achieved by arranging the points in a nonuniform way that tends to move points towards the boundary and away from the center. A common scheme for doing this starts with the uniform points on [0,1] and applies the cosine function to arrive at nonuniformly spaced points in [-1,1]. This scheme is known as the Clenshaw Curtis rule.

The library of routines presented here will only construct grids based on the Clenshaw Curtis rule.

Licensing:

The computer code and data files made available on this web page are distributed under the MIT license

Languages:

sparse_grid_cc is available in a C version and a C++ version and a FORTRAN90 version and a MATLAB version.

Related Data and Programs:

cc_display, a MATLAB code which can compute and display Clenshaw Curtis grids in two dimensions, as well as sparse grids formed from sums of Clenshaw Curtis grids.

grid_display, a MATLAB code which can display a 2D or 3D grid or sparse grid.

quadrule, a MATLAB code which defines quadrature rules for various intervals and weight functions.

sparse_grid_cc_test

sparse_grid_composite, a MATLAB code which creates sparse grids based on 1D composite rules (currently only of order 1).

sparse_grid_f2, a dataset directory which contains the abscissas of sparse grids based on a Fejer Type 2 rule.

sparse_grid_gl, a MATLAB code which computes sparse grids based on a Gauss-Legendre rule.

sparse_grid_gp, a dataset directory which contains the abscissas of sparse grids based on a Gauss Patterson rule.

sparse_grid_hermite, a MATLAB code which creates sparse grids based on Gauss-Hermite rules.

sparse_grid_hw, a MATLAB code which creates sparse grids based on Gauss-Legendre, Gauss-Hermite, Gauss-Patterson, or a nested variation of Gauss-Hermite rules, by Florian Heiss and Viktor Winschel.

spquad, a MATLAB code which computes the points and weights of a sparse grid quadrature rule for a multidimensional integral, based on the Clenshaw-Curtis quadrature rule, by Greg von Winckel.

toms847, a MATLAB code which uses sparse grids to carry out multilinear hierarchical interpolation. It is commonly known as SPINTERP, and is by Andreas Klimke.

Reference:

  1. Volker Barthelmann, Erich Novak, Klaus Ritter,
    High Dimensional Polynomial Interpolation on Sparse Grids,
    Advances in Computational Mathematics,
    Volume 12, Number 4, 2000, pages 273-288.
  2. Thomas Gerstner, Michael Griebel,
    Numerical Integration Using Sparse Grids,
    Numerical Algorithms,
    Volume 18, Number 3-4, 1998, pages 209-232.
  3. Albert Nijenhuis, Herbert Wilf,
    Combinatorial Algorithms for Computers and Calculators,
    Second Edition,
    Academic Press, 1978,
    ISBN: 0-12-519260-6,
    LC: QA164.N54.
  4. Fabio Nobile, Raul Tempone, Clayton Webster,
    A Sparse Grid Stochastic Collocation Method for Partial Differential Equations with Random Input Data,
    SIAM Journal on Numerical Analysis,
    Volume 46, Number 5, 2008, pages 2309-2345.
  5. Sergey Smolyak,
    Quadrature and Interpolation Formulas for Tensor Products of Certain Classes of Functions,
    Doklady Akademii Nauk SSSR,
    Volume 4, 1963, pages 240-243.
  6. Dennis Stanton, Dennis White,
    Constructive Combinatorics,
    Springer, 1986,
    ISBN: 0387963472,
    LC: QA164.S79.

Source Code:


Last revised on 11 January 2021.