|
3 | 3 | * \brief All the information about the definition of the physical problem. |
4 | 4 | * The subroutines and functions are in the <i>CConfig.cpp</i> file. |
5 | 5 | * \author F. Palacios, T. Economon, B. Tracey |
6 | | - * \version 7.0.7 "Blackbird" |
| 6 | + * \version 7.0.8 "Blackbird" |
7 | 7 | * |
8 | 8 | * SU2 Project Website: https://su2code.github.io |
9 | 9 | * |
@@ -606,8 +606,9 @@ class CConfig { |
606 | 606 | Kappa_4th_Flow, /*!< \brief JST 4th order dissipation coefficient for flow equations. */ |
607 | 607 | Kappa_2nd_Heat, /*!< \brief 2nd order dissipation coefficient for heat equation. */ |
608 | 608 | 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 |
610 | 610 | 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 */ |
611 | 612 | su2double Geo_Waterline_Location; /*!< \brief Location of the waterline. */ |
612 | 613 |
|
613 | 614 | su2double Min_Beta_RoeTurkel, /*!< \brief Minimum value of Beta for the Roe-Turkel low Mach preconditioner. */ |
@@ -1115,7 +1116,6 @@ class CConfig { |
1115 | 1116 | unsigned short Comm_Level; /*!< \brief Level of MPI communications to be performed. */ |
1116 | 1117 | unsigned short Kind_Verification_Solution; /*!< \brief Verification solution for accuracy assessment. */ |
1117 | 1118 |
|
1118 | | - ofstream *ConvHistFile; /*!< \brief Store the pointer to each history file */ |
1119 | 1119 | bool Time_Domain; /*!< \brief Determines if the multizone problem is solved in time-domain */ |
1120 | 1120 | unsigned long nOuterIter, /*!< \brief Determines the number of outer iterations in the multizone problem */ |
1121 | 1121 | nInnerIter, /*!< \brief Determines the number of inner iterations in each multizone block */ |
@@ -4632,6 +4632,12 @@ class CConfig { |
4632 | 4632 | */ |
4633 | 4633 | su2double GetCent_Jac_Fix_Factor(void) const { return Cent_Jac_Fix_Factor; } |
4634 | 4634 |
|
| 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 | + |
4635 | 4641 | /*! |
4636 | 4642 | * \brief Get the kind of integration scheme (explicit or implicit) |
4637 | 4643 | * for the adjoint flow equations. |
@@ -9023,16 +9029,6 @@ class CConfig { |
9023 | 9029 | type = top_optim_proj_type; param = top_optim_proj_param; |
9024 | 9030 | } |
9025 | 9031 |
|
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 | | - |
9036 | 9032 | /*! |
9037 | 9033 | * \brief Get the filenames of the individual config files |
9038 | 9034 | * \return File name of the config file for zone "index" |
|
0 commit comments