Skip to content

Commit cedd0b3

Browse files
authored
Merge branch 'develop' into feature_small_restart
2 parents a9682ac + 72632af commit cedd0b3

File tree

7 files changed

+180
-212
lines changed

7 files changed

+180
-212
lines changed

Common/src/CConfig.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5612,16 +5612,16 @@ void CConfig::SetPostprocessing(SU2_COMPONENT val_software, unsigned short val_i
56125612
/*--- Define some variables for flamelet model. ---*/
56135613
if (Kind_Species_Model == SPECIES_MODEL::FLAMELET) {
56145614
/*--- The controlling variables are progress variable, total enthalpy, and optionally mixture fraction ---*/
5615-
//n_control_vars = nSpecies - n_user_scalars;
56165615
if (n_control_vars != (nSpecies - n_user_scalars))
5617-
SU2_MPI::Error("Number of initial species incompatbile with number of controlling variables and user scalars.", CURRENT_FUNCTION);
5616+
SU2_MPI::Error("Number of initial species incompatible with number of controlling variables and user scalars.", CURRENT_FUNCTION);
56185617
/*--- We can have additional user defined transported scalars ---*/
56195618
n_scalars = n_control_vars + n_user_scalars;
56205619
}
56215620

56225621
if (Kind_Regime == ENUM_REGIME::COMPRESSIBLE && GetBounded_Scalar()) {
56235622
SU2_MPI::Error("BOUNDED_SCALAR discretization can only be used for incompressible problems.", CURRENT_FUNCTION);
56245623
}
5624+
56255625
}
56265626

56275627
void CConfig::SetMarkers(SU2_COMPONENT val_software) {

Common/src/geometry/CMultiGridGeometry.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ CMultiGridGeometry::CMultiGridGeometry(CGeometry* fine_grid, CConfig* config, un
3636
/*--- Create a queue system to do the agglomeration
3737
1st) More than two markers ---> Vertices (never agglomerate)
3838
2nd) Two markers ---> Edges (agglomerate if same BC, never agglomerate if different BC)
39-
3rd) One marker ---> Surface (always agglomarate)
40-
4th) No marker ---> Internal Volume (always agglomarate) ---*/
39+
3rd) One marker ---> Surface (always agglomerate)
40+
4th) No marker ---> Internal Volume (always agglomerate) ---*/
4141

4242
/*--- Set a marker to indicate indirect agglomeration, for quads and hexs,
4343
i.e. consider up to neighbors of neighbors of neighbors.

0 commit comments

Comments
 (0)