tension_spline.cpp
Go to the documentation of this file.
1 
13 /*****************************************************************************
14 ** Includes
15 *****************************************************************************/
16 
17 #include "../../include/ecl/geometry/tension_spline.hpp"
18 
19 /*****************************************************************************
20 ** Namespaces
21 *****************************************************************************/
22 
23 namespace ecl {
24 
25 /*****************************************************************************
26 ** Implementation
27 *****************************************************************************/
28 
29 double TensionSpline::operator()(const double &x) const {
31  int index = 0;
32  while ( x > discretised_domain[index+1] ) {
33  ++index;
34  }
35  return functions[index](tension,x);
36 }
37 
38 double TensionSpline::derivative(const double &x) const {
40  int index = 0;
41  while ( x > discretised_domain[index+1] ) {
42  ++index;
43  }
44  return functions[index].derivative(tension,x);
45 }
46 
47 double TensionSpline::dderivative(const double &x) const {
49  int index = 0;
50  while ( x > discretised_domain[index+1] ) {
51  ++index;
52  }
53  return functions[index].dderivative(tension,x);
54 }
55 
56 } // namespace ecl
double dderivative(const double &x) const
Spline second derivative.
Embedded control libraries.
Array< double > discretised_domain
double derivative(const double &x) const
Spline derivative.
#define LOC
double operator()(const double &x) const
Spline function.
#define ecl_assert_throw(expression, exception)
OutOfRangeError
reference back()
Array< TensionFunction > functions
reference front()


ecl_geometry
Author(s): Daniel Stonier
autogenerated on Mon Feb 28 2022 22:18:49