Skip to content

Commit e1ac56e

Browse files
Merge branch 'develop' into feature_preconditioning
2 parents 5669c8f + 911d1f3 commit e1ac56e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

Common/include/geometry/primal_grid/CPrimalGrid.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class CPrimalGrid {
4949
unsigned long GlobalIndex_DomainElement;
5050

5151
std::unique_ptr<unsigned long[]> Nodes; /*!< \brief Global node indices of the element. */
52-
std::unique_ptr<long[]> Neighbor_Elements; /*!< \brief Vector to store the elements surronding this element. */
52+
std::unique_ptr<long[]> Neighbor_Elements; /*!< \brief Vector to store the elements surrounding this element. */
5353

5454
su2double Coord_CG[3] = {0.0}; /*!< \brief Coordinates of the center-of-gravity of the element. */
5555
su2double Volume; /*!< \brief Volume of the element. */

Common/src/geometry/CPhysicalGeometry.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4642,7 +4642,7 @@ void CPhysicalGeometry::SetElement_Connectivity() {
46424642

46434643
if ((elem[iElem]->GetNeighbor_Elements(iFace) == -1) && (iElem < Test_Elem) &&
46444644
FindFace(iElem, Test_Elem, first_elem_face, second_elem_face)) {
4645-
/*--- Localice which faces are sharing both elements ---*/
4645+
/*--- Localize which faces are sharing both elements ---*/
46464646

46474647
elem[iElem]->SetNeighbor_Elements(Test_Elem, first_elem_face);
46484648

@@ -4666,7 +4666,7 @@ void CPhysicalGeometry::SetBoundVolume() {
46664666
CheckVol = false;
46674667

46684668
for (iElem = 0; iElem < nodes->GetnElem(Point); iElem++) {
4669-
/*--- Look for elements surronding that point --*/
4669+
/*--- Look for elements surrounding that point --*/
46704670
cont = 0;
46714671
iElem_Domain = nodes->GetElem(Point, iElem);
46724672
for (iNode_Domain = 0; iNode_Domain < elem[iElem_Domain]->GetnNodes(); iNode_Domain++) {
@@ -4775,10 +4775,10 @@ void CPhysicalGeometry::ComputeNSpan(CConfig* config, unsigned short val_iZone,
47754775
nSpan_loc = 0;
47764776
if (nDim == 2) {
47774777
nSpanWiseSections[marker_flag - 1] = 1;
4778-
// TODO (turbo) make it more genral
4778+
// TODO (turbo) make it more general
47794779
if (marker_flag == OUTFLOW) config->SetnSpanWiseSections(1);
47804780

4781-
/*---Initilize the vector of span-wise values that will be ordered ---*/
4781+
/*---Initialize the vector of span-wise values that will be ordered ---*/
47824782
SpanWiseValue[marker_flag - 1] = new su2double[1];
47834783
for (iSpan = 0; iSpan < 1; iSpan++) {
47844784
SpanWiseValue[marker_flag - 1][iSpan] = 0;
@@ -4792,7 +4792,7 @@ void CPhysicalGeometry::ComputeNSpan(CConfig* config, unsigned short val_iZone,
47924792
if (config->GetMarker_All_TurbomachineryFlag(iMarker) != marker_flag) continue;
47934793

47944794
/*--- loop to find the vertex that ar both of inflow or outflow marker and on the periodic
4795-
* in order to caount the number of Span ---*/
4795+
* in order to count the number of Span ---*/
47964796
for (jMarker = 0; jMarker < nMarker; jMarker++) {
47974797
if (config->GetMarker_All_KindBC(jMarker) != PERIODIC_BOUNDARY) continue;
47984798

SU2_CFD/src/solvers/CGradientSmoothingSolver.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ CGradientSmoothingSolver::CGradientSmoothingSolver(CGeometry *geometry, CConfig
9393
element_container[GRAD_TERM][EL_PYRAM2] = new CPYRAM6();
9494
}
9595

96-
/*--- For operations on surfaces we initalize the structures for nDim-1 ---*/
96+
/*--- For operations on surfaces we initialize the structures for nDim-1 ---*/
9797
if (config->GetSmoothOnSurface()) {
9898
if (nDim == 2) {
9999
element_container[GRAD_TERM][EL_LINE] = new CLINE();

SU2_CFD/src/variables/CMeshVariable.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ CMeshVariable::CMeshVariable(unsigned long npoint, unsigned long ndim, CConfig *
3434
/*--- Store the dimensionality of the problem ---*/
3535
nDim = ndim;
3636

37-
/*--- Initalize the variables that will always be there in a problem with moving mesh ---*/
37+
/*--- Initialize the variables that will always be there in a problem with moving mesh ---*/
3838
Mesh_Coord.resize(nPoint,nDim) = su2double(0.0);
3939
WallDistance.resize(nPoint) = su2double(1e-9);
4040

0 commit comments

Comments
 (0)