Reference documentation for deal.II version 9.1.0-pre
function_cspline.h
1 // ---------------------------------------------------------------------
2 //
3 // Copyright (C) 2016 - 2017 by the deal.II authors
4 //
5 // This file is part of the deal.II library.
6 //
7 // The deal.II library is free software; you can use it, redistribute
8 // it, and/or modify it under the terms of the GNU Lesser General
9 // Public License as published by the Free Software Foundation; either
10 // version 2.1 of the License, or (at your option) any later version.
11 // The full text of the license can be found in the file LICENSE.md at
12 // the top level directory of deal.II.
13 //
14 // ---------------------------------------------------------------------
15 
16 #ifndef dealii_function_cspline_h
17 #define dealii_function_cspline_h
18 
19 #include <deal.II/base/config.h>
20 
21 #ifdef DEAL_II_WITH_GSL
22 # include <deal.II/base/function.h>
23 # include <deal.II/base/point.h>
24 # include <deal.II/base/thread_management.h>
25 
26 # include <gsl/gsl_spline.h>
27 
28 DEAL_II_NAMESPACE_OPEN
29 
30 namespace Functions
31 {
33  int,
34  << "Interpolation points vector size can not be <" << arg1
35  << ">.");
36 
38  int,
39  int,
40  << "The size of interpolation points <" << arg1
41  << "> is different from the size of interpolation values <"
42  << arg2 << ">.");
43 
44 
46  int,
47  double,
48  double,
49  << "The input interpolation points are not strictly ordered : "
50  << std::endl
51  << "x[" << arg1 << "] = " << arg2 << " >= x[" << (arg1 + 1)
52  << "] = " << arg3 << ".");
53 
56  double,
57  double,
58  double,
59  << "Spline function can not be evaluated outside of the interpolation range: "
60  << std::endl
61  << arg1 << " is not in [" << arg2 << ";" << arg3 << "].");
62 
74  template <int dim>
75  class CSpline : public Function<dim>
76  {
77  public:
83  CSpline(const std::vector<double> &interpolation_points,
84  const std::vector<double> &interpolation_values);
85 
89  virtual ~CSpline() override;
90 
91  virtual double
92  value(const Point<dim> & point,
93  const unsigned int component = 0) const override;
94 
95  virtual Tensor<1, dim>
96  gradient(const Point<dim> & p,
97  const unsigned int component = 0) const override;
98 
100  hessian(const Point<dim> & p,
101  const unsigned int component = 0) const override;
102 
103  virtual double
104  laplacian(const Point<dim> & p,
105  const unsigned int component = 0) const override;
106 
107  std::size_t
108  memory_consumption() const;
109 
110  private:
114  const std::vector<double> interpolation_points;
115 
119  const std::vector<double> interpolation_values;
120 
124  gsl_interp_accel *acc;
125 
129  gsl_spline *cspline;
130 
135  };
136 } // namespace Functions
137 
138 DEAL_II_NAMESPACE_CLOSE
139 
140 #endif
141 
142 #endif
virtual SymmetricTensor< 2, dim > hessian(const Point< dim > &p, const unsigned int component=0) const override
#define DeclException2(Exception2, type1, type2, outsequence)
Definition: exceptions.h:420
virtual ~CSpline() override
virtual double laplacian(const Point< dim > &p, const unsigned int component=0) const override
virtual double value(const Point< dim > &point, const unsigned int component=0) const override
virtual Tensor< 1, dim > gradient(const Point< dim > &p, const unsigned int component=0) const override
#define DeclException1(Exception1, type1, outsequence)
Definition: exceptions.h:408
static::ExceptionBase & ExcCSplineEmpty(int arg1)
const std::vector< double > interpolation_points
static::ExceptionBase & ExcCSplineOrder(int arg1, double arg2, double arg3)
Threads::Mutex acc_mutex
gsl_interp_accel * acc
const std::vector< double > interpolation_values
static::ExceptionBase & ExcCSplineRange(double arg1, double arg2, double arg3)
static::ExceptionBase & ExcCSplineSizeMismatch(int arg1, int arg2)
#define DeclException3(Exception3, type1, type2, type3, outsequence)
Definition: exceptions.h:432
CSpline(const std::vector< double > &interpolation_points, const std::vector< double > &interpolation_values)