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 
30  ecl_assert_throw( ( ( x >= discretised_domain.front() ) && ( x <= discretised_domain.back() ) ), StandardException(LOC,OutOfRangeError) );
31  int index = 0;
32  while ( x > discretised_domain[index+1] ) {
33  ++index;
34  }
35  return functions[index](tension,x);
36 }
37 
39  ecl_assert_throw( ( ( x >= discretised_domain.front() ) && ( x <= discretised_domain.back() ) ), StandardException(LOC,OutOfRangeError) );
40  int index = 0;
41  while ( x > discretised_domain[index+1] ) {
42  ++index;
43  }
44  return functions[index].derivative(tension,x);
45 }
46 
48  ecl_assert_throw( ( ( x >= discretised_domain.front() ) && ( x <= discretised_domain.back() ) ), StandardException(LOC,OutOfRangeError) );
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 operator()(const double &x) const ecl_assert_throw_decl(StandardException)
Spline function.
Embedded control libraries.
double derivative(const double &x) const ecl_assert_throw_decl(StandardException)
Spline derivative.
#define LOC
double dderivative(const double &x) const ecl_assert_throw_decl(StandardException)
Spline second derivative.
#define ecl_assert_throw(expression, exception)
OutOfRangeError
#define ecl_assert_throw_decl(exception)


ecl_geometry
Author(s): Daniel Stonier
autogenerated on Mon Jun 10 2019 13:08:37