Skip to content

Commit 45214cd

Browse files
authored
fix spelling errors and y+ warning message (#1753)
1 parent 013c3cd commit 45214cd

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

Common/include/containers/CTrapezoidalMap.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* \file TrapezoidalMap.hpp
2+
* \file CTrapezoidalMap.hpp
33
* \brief Implementation of the trapezoidal map for tabulation and lookup of fluid properties
44
* \author D. Mayer, T. Economon
55
* \version 7.4.0 "Blackbird"

Common/src/containers/CTrapezoidalMap.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* \file TrapezoidalMap.cpp
2+
* \file CTrapezoidalMap.cpp
33
* \brief Implementation of the trapezoidal map for tabulation and lookup of fluid properties
44
* \author D. Mayer, T. Economon
55
* \version 7.4.0 "Blackbird"

SU2_CFD/include/solvers/CScalarSolver.inl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* \file CScalarSolver.inl
3-
* \brief Main subrotuines of CScalarSolver class
3+
* \brief Main subroutines of CScalarSolver class
44
* \version 7.4.0 "Blackbird"
55
*
66
* SU2 Project Website: https://su2code.github.io

SU2_CFD/src/solvers/CAdjTurbSolver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* \file CAdjTurbVariable.cpp
3-
* \brief Main subrotuines for solving turbulent adjoint problems.
3+
* \brief Main subroutines for solving turbulent adjoint problems.
44
* \author F. Palacios, A. Bueno, T. Economon
55
* \version 7.4.0 "Blackbird"
66
*

SU2_CFD/src/solvers/CEulerSolver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* \file CEulerSolver.cpp
3-
* \brief Main subrotuines for solving Finite-Volume Euler flow problems.
3+
* \brief Main subroutines for solving Finite-Volume Euler flow problems.
44
* \author F. Palacios, T. Economon
55
* \version 7.4.0 "Blackbird"
66
*

SU2_CFD/src/solvers/CHeatSolver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* \file CHeatSolver.cpp
3-
* \brief Main subrotuines for solving the heat equation
3+
* \brief Main subroutines for solving the heat equation
44
* \author F. Palacios, T. Economon
55
* \version 7.4.0 "Blackbird"
66
*

SU2_CFD/src/solvers/CIncNSSolver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -813,7 +813,7 @@ void CIncNSSolver::SetTau_Wall_WF(CGeometry *geometry, CSolver **solver_containe
813813
<< notConvergedCounter << " points." << endl;
814814

815815
if (smallYPlusCounter)
816-
cout << "Warning: y+ < 5.0 in " << smallYPlusCounter
816+
cout << "Warning: y+ < " << config->GetwallModel_MinYPlus() << " in " << smallYPlusCounter
817817
<< " points, for which the wall model is not active." << endl;
818818
}
819819
}

SU2_CFD/src/solvers/CNSSolver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,7 @@ void CNSSolver::SetTau_Wall_WF(CGeometry *geometry, CSolver **solver_container,
10471047
<< notConvergedCounter << " points." << endl;
10481048

10491049
if (smallYPlusCounter)
1050-
cout << "Warning: y+ < 5.0 in " << smallYPlusCounter
1050+
cout << "Warning: y+ < " << config->GetwallModel_MinYPlus() << " in " << smallYPlusCounter
10511051
<< " points, for which the wall model is not active." << endl;
10521052
}
10531053
}

SU2_CFD/src/solvers/CSpeciesSolver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* \file CSpeciesSolver.cpp
3-
* \brief Main subrotuines of CSpeciesSolver class
3+
* \brief Main subroutines of CSpeciesSolver class
44
* \author T. Kattmann
55
* \version 7.4.0 "Blackbird"
66
*

SU2_CFD/src/solvers/CTurbSASolver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* \file CTurbSASolver.cpp
3-
* \brief Main subrotuines of CTurbSASolver class
3+
* \brief Main subroutines of CTurbSASolver class
44
* \author F. Palacios, A. Bueno
55
* \version 7.4.0 "Blackbird"
66
*

0 commit comments

Comments
 (0)