Skip to content

Commit c204683

Browse files
Fix spelling mistakes (#1586)
* Fix spelling mistakes
1 parent c100612 commit c204683

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

Common/include/CConfig.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6630,8 +6630,8 @@ class CConfig {
66306630
su2double GetExhaust_Pressure_Target(string val_index) const;
66316631

66326632
/*!
6633-
* \brief Value of the CFL reduction in LevelSet problems.
6634-
* \return Value of the CFL reduction in LevelSet problems.
6633+
* \brief Value of the CFL reduction in turbulence problems.
6634+
* \return Value of the CFL reduction in turbulence problems.
66356635
*/
66366636
su2double GetCFLRedCoeff_Turb(void) const { return CFLRedCoeff_Turb; }
66376637

Common/src/CConfig.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4813,7 +4813,7 @@ void CConfig::SetPostprocessing(SU2_COMPONENT val_software, unsigned short val_i
48134813
}
48144814
}
48154815

4816-
/*--- Check feassbility for Streamwise Periodic flow ---*/
4816+
/*--- Check feasibility for Streamwise Periodic flow ---*/
48174817
if (Kind_Streamwise_Periodic != ENUM_STREAMWISE_PERIODIC::NONE) {
48184818
if (Kind_Regime != ENUM_REGIME::INCOMPRESSIBLE)
48194819
SU2_MPI::Error("Streamwise Periodic Flow currently only implemented for incompressible flow.", CURRENT_FUNCTION);

SU2_CFD/include/gradients/computeGradientsLeastSquares.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ void computeGradientsLeastSquares(CSolver* solver,
238238
su2double weight = 1.0;
239239
if(weighted) weight = GeometryToolbox::SquaredNorm(nDim, dist_ij);
240240

241-
/*--- Sumations for entries of upper triangular matrix R. ---*/
241+
/*--- Summations for entries of upper triangular matrix R. ---*/
242242

243243
if (weight > 0.0)
244244
{

SU2_CFD/src/drivers/CDriver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,7 @@ void CDriver::Inlet_Preprocessing(CSolver ***solver, CGeometry **geometry,
11051105
/*--- Uniform inlets or python-customized inlets ---*/
11061106

11071107
/* --- Initialize quantities for inlet boundary
1108-
* This routine does not check if they python wrapper is being used to
1108+
* This routine does not check if the python wrapper is being used to
11091109
* set custom boundary conditions. This is intentional; the
11101110
* default values for python custom BCs are initialized with the default
11111111
* values specified in the config (avoiding non physical values) --- */

SU2_CFD/src/solvers/CTurbSSTSolver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ CTurbSSTSolver::CTurbSSTSolver(CGeometry *geometry, CConfig *config, unsigned sh
143143
InitiateComms(geometry, config, SOLUTION_EDDY);
144144
CompleteComms(geometry, config, SOLUTION_EDDY);
145145

146-
/*--- Initializate quantities for SlidingMesh Interface ---*/
146+
/*--- Initialize quantities for SlidingMesh Interface ---*/
147147

148148
SlidingState.resize(nMarker);
149149
SlidingStateNodes.resize(nMarker);

SU2_PY/SU2/eval/design.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ class Design(object):
7373
con_cieq(dvs) - inequality constraints : list
7474
con_dcieq(dvs) - inequality constraint gradients : list[list]
7575
76-
Fucntional Interface
76+
Functional Interface
7777
The following methods take an objective function name for input.
7878
func(func_name) - function of specified name
7979
grad(func_name,method='CONTINUOUS_ADJOINT') - gradient of specified name

0 commit comments

Comments
 (0)