Skip to content

Commit 770dc94

Browse files
authored
Merge branch 'develop' into feature_invalidGridPrevention
2 parents 6bbd4a6 + d0d4b32 commit 770dc94

795 files changed

Lines changed: 7037 additions & 21411 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Common/doc/docmain.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file docmain.hpp
33
* \brief This file contains documentation for Doxygen and does not have any significance with respect to C++.
44
* \author F. Palacios
5-
* \version 7.0.7 "Blackbird"
5+
* \version 7.0.8 "Blackbird"
66
*
77
* The current SU2 release has been coordinated by the
88
* SU2 International Developers Society <www.su2devsociety.org>
@@ -33,7 +33,7 @@
3333
*/
3434

3535
/*!
36-
* \mainpage SU2 version 7.0.7 "Blackbird"
36+
* \mainpage SU2 version 7.0.8 "Blackbird"
3737
* SU2 suite is an open-source collection of C++ based software tools
3838
* to perform PDE analysis and PDE constrained optimization problems. The toolset is designed with
3939
* computational fluid dynamics and aerodynamic shape optimization in mind, but is extensible to

Common/include/CConfig.hpp

Lines changed: 9 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* \brief All the information about the definition of the physical problem.
44
* The subroutines and functions are in the <i>CConfig.cpp</i> file.
55
* \author F. Palacios, T. Economon, B. Tracey
6-
* \version 7.0.7 "Blackbird"
6+
* \version 7.0.8 "Blackbird"
77
*
88
* SU2 Project Website: https://su2code.github.io
99
*
@@ -606,8 +606,9 @@ class CConfig {
606606
Kappa_4th_Flow, /*!< \brief JST 4th order dissipation coefficient for flow equations. */
607607
Kappa_2nd_Heat, /*!< \brief 2nd order dissipation coefficient for heat equation. */
608608
Kappa_4th_Heat, /*!< \brief 4th order dissipation coefficient for heat equation. */
609-
Cent_Jac_Fix_Factor; /*!< \brief Multiply the dissipation contribution to the Jacobian of central schemes
609+
Cent_Jac_Fix_Factor, /*!< \brief Multiply the dissipation contribution to the Jacobian of central schemes
610610
by this factor to make the global matrix more diagonal dominant. */
611+
Cent_Inc_Jac_Fix_Factor; /*!< \brief Multiply the dissipation contribution to the Jacobian of incompressible central schemes */
611612
su2double Geo_Waterline_Location; /*!< \brief Location of the waterline. */
612613

613614
su2double Min_Beta_RoeTurkel, /*!< \brief Minimum value of Beta for the Roe-Turkel low Mach preconditioner. */
@@ -1115,7 +1116,6 @@ class CConfig {
11151116
unsigned short Comm_Level; /*!< \brief Level of MPI communications to be performed. */
11161117
unsigned short Kind_Verification_Solution; /*!< \brief Verification solution for accuracy assessment. */
11171118

1118-
ofstream *ConvHistFile; /*!< \brief Store the pointer to each history file */
11191119
bool Time_Domain; /*!< \brief Determines if the multizone problem is solved in time-domain */
11201120
unsigned long nOuterIter, /*!< \brief Determines the number of outer iterations in the multizone problem */
11211121
nInnerIter, /*!< \brief Determines the number of inner iterations in each multizone block */
@@ -4632,6 +4632,12 @@ class CConfig {
46324632
*/
46334633
su2double GetCent_Jac_Fix_Factor(void) const { return Cent_Jac_Fix_Factor; }
46344634

4635+
/*!
4636+
* \brief Factor by which to multiply the dissipation contribution to Jacobians of incompressible central schemes.
4637+
* \return The factor.
4638+
*/
4639+
su2double GetCent_Inc_Jac_Fix_Factor(void) const { return Cent_Inc_Jac_Fix_Factor; }
4640+
46354641
/*!
46364642
* \brief Get the kind of integration scheme (explicit or implicit)
46374643
* for the adjoint flow equations.
@@ -9023,16 +9029,6 @@ class CConfig {
90239029
type = top_optim_proj_type; param = top_optim_proj_param;
90249030
}
90259031

9026-
/*!
9027-
* \brief Retrieve the ofstream of the history file for the current zone.
9028-
*/
9029-
ofstream* GetHistFile(void) { return ConvHistFile; }
9030-
9031-
/*!
9032-
* \brief Set the ofstream of the history file for the current zone.
9033-
*/
9034-
void SetHistFile(ofstream *HistFile) { ConvHistFile = HistFile; }
9035-
90369032
/*!
90379033
* \brief Get the filenames of the individual config files
90389034
* \return File name of the config file for zone "index"

Common/include/CMultiGridQueue.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* \brief Header of the multigrid queue class for the FVM solver.
44
* The subroutines and functions are in the <i>CMultiGridQueue.cpp</i> file.
55
* \author F. Palacios
6-
* \version 7.0.7 "Blackbird"
6+
* \version 7.0.8 "Blackbird"
77
*
88
* SU2 Project Website: https://su2code.github.io
99
*

Common/include/adt/CADTBaseClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file CADTBaseClass.hpp
33
* \brief Base class for storing an ADT in an arbitrary number of dimensions.
44
* \author E. van der Weide
5-
* \version 7.0.7 "Blackbird"
5+
* \version 7.0.8 "Blackbird"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*

Common/include/adt/CADTComparePointClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file CADTComparePointClass.hpp
33
* \brief subroutines for comparing two points in an alternating digital tree (ADT).
44
* \author E. van der Weide
5-
* \version 7.0.7 "Blackbird"
5+
* \version 7.0.8 "Blackbird"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*

Common/include/adt/CADTElemClass.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file CADTElemClass.hpp
33
* \brief Class for storing an ADT of (linear) elements in an arbitrary number of dimensions.
44
* \author E. van der Weide
5-
* \version 7.0.7 "Blackbird"
5+
* \version 7.0.8 "Blackbird"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*
@@ -35,7 +35,7 @@
3535
* \class CADTElemClass
3636
* \brief Class for storing an ADT of (linear) elements in an arbitrary number of dimensions.
3737
* \author E. van der Weide
38-
* \version 7.0.7 "Blackbird"
38+
* \version 7.0.8 "Blackbird"
3939
*/
4040
class CADTElemClass : public CADTBaseClass {
4141
private:

Common/include/adt/CADTNodeClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file CADTNodeClass.hpp
33
* \brief Class for storing the information needed in a node of an ADT.
44
* \author E. van der Weide
5-
* \version 7.0.7 "Blackbird"
5+
* \version 7.0.8 "Blackbird"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*

Common/include/adt/CADTPointsOnlyClass.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file CADTPointsOnlyClass.hpp
33
* \brief Class for storing an ADT of only points in an arbitrary number of dimensions.
44
* \author E. van der Weide
5-
* \version 7.0.7 "Blackbird"
5+
* \version 7.0.8 "Blackbird"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*

Common/include/adt/CBBoxTargetClass.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* \brief Class for storing the information of a possible bounding box candidate
44
during a minimum distance search.
55
* \author E. van der Weide
6-
* \version 7.0.7 "Blackbird"
6+
* \version 7.0.8 "Blackbird"
77
*
88
* SU2 Project Website: https://su2code.github.io
99
*
@@ -34,7 +34,7 @@
3434
* \brief Class for storing the information of a possible bounding box candidate
3535
during a minimum distance search.
3636
* \author E. van der Weide
37-
* \version 7.0.7 "Blackbird"
37+
* \version 7.0.8 "Blackbird"
3838
*/
3939
struct CBBoxTargetClass {
4040

Common/include/basic_types/ad_structure.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* \file ad_structure.hpp
33
* \brief Main routines for the algorithmic differentiation (AD) structure.
44
* \author T. Albring
5-
* \version 7.0.7 "Blackbird"
5+
* \version 7.0.8 "Blackbird"
66
*
77
* SU2 Project Website: https://su2code.github.io
88
*

0 commit comments

Comments
 (0)