|
1 | 1 | /*! |
2 | 2 | * \file C1DInterpolation.hpp |
3 | | - * \brief Inlet_interpolation_functions |
| 3 | + * \brief Classes for 1D interpolation. |
4 | 4 | * \author Aman Baig, P. Gomes |
5 | 5 | * \version 7.1.1 "Blackbird" |
6 | 6 | * |
@@ -89,7 +89,7 @@ class CAkimaInterpolation: public C1DInterpolation{ |
89 | 89 |
|
90 | 90 | /*! |
91 | 91 | * \brief Constructor of the CAkimaInterpolation class. |
92 | | - * \param[in] X - the x values. |
| 92 | + * \param[in] X - the x values (sorted low to high). |
93 | 93 | * \param[in] Data - the f(x) values. |
94 | 94 | */ |
95 | 95 | CAkimaInterpolation(const std::vector<su2double> &X, const std::vector<su2double> &Data) { |
@@ -120,7 +120,7 @@ class CCubicSpline final: public CAkimaInterpolation { |
120 | 120 |
|
121 | 121 | /*! |
122 | 122 | * \brief Constructor of the CCubicSpline class (defaults to natural spline). |
123 | | - * \param[in] X - the x values. |
| 123 | + * \param[in] X - the x values (sorted low to high). |
124 | 124 | * \param[in] Data - the f(x) values. |
125 | 125 | * \param[in] startCondition - 1st or 2nd derivative imposed at the start. |
126 | 126 | * \param[in] startValue - value of the derivative imposed at the start. |
@@ -149,7 +149,7 @@ class CLinearInterpolation final: public C1DInterpolation { |
149 | 149 |
|
150 | 150 | /*! |
151 | 151 | * \brief Constructor of the CLinearInterpolation class. |
152 | | - * \param[in] X - the x values. |
| 152 | + * \param[in] X - the x values (sorted low to high). |
153 | 153 | * \param[in] Data - the f(x) values. |
154 | 154 | */ |
155 | 155 | CLinearInterpolation(const std::vector<su2double> &X, const std::vector<su2double> &Data) { |
|
0 commit comments