Skip to content

Commit 2ea951d

Browse files
committed
better comments
1 parent 1132faf commit 2ea951d

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

Common/include/toolboxes/C1DInterpolation.hpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* \file C1DInterpolation.hpp
3-
* \brief Inlet_interpolation_functions
3+
* \brief Classes for 1D interpolation.
44
* \author Aman Baig, P. Gomes
55
* \version 7.1.1 "Blackbird"
66
*
@@ -89,7 +89,7 @@ class CAkimaInterpolation: public C1DInterpolation{
8989

9090
/*!
9191
* \brief Constructor of the CAkimaInterpolation class.
92-
* \param[in] X - the x values.
92+
* \param[in] X - the x values (sorted low to high).
9393
* \param[in] Data - the f(x) values.
9494
*/
9595
CAkimaInterpolation(const std::vector<su2double> &X, const std::vector<su2double> &Data) {
@@ -120,7 +120,7 @@ class CCubicSpline final: public CAkimaInterpolation {
120120

121121
/*!
122122
* \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).
124124
* \param[in] Data - the f(x) values.
125125
* \param[in] startCondition - 1st or 2nd derivative imposed at the start.
126126
* \param[in] startValue - value of the derivative imposed at the start.
@@ -149,7 +149,7 @@ class CLinearInterpolation final: public C1DInterpolation {
149149

150150
/*!
151151
* \brief Constructor of the CLinearInterpolation class.
152-
* \param[in] X - the x values.
152+
* \param[in] X - the x values (sorted low to high).
153153
* \param[in] Data - the f(x) values.
154154
*/
155155
CLinearInterpolation(const std::vector<su2double> &X, const std::vector<su2double> &Data) {

Common/src/toolboxes/C1DInterpolation.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*!
22
* \file C1DInterpolation.cpp
3-
* \brief Inlet_interpolation_functions
4-
* \author Aman Baig
3+
* \brief Classes for 1D interpolation.
4+
* \author Aman Baig, P. Gomes
55
* \version 7.1.1 "Blackbird"
66
*
77
* SU2 Project Website: https://su2code.github.io

0 commit comments

Comments
 (0)