You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Common/include/CConfig.hpp
+14-16Lines changed: 14 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -783,8 +783,6 @@ class CConfig {
783
783
unsignedshort
784
784
Console_Output_Verb, /*!< \brief Level of verbosity for console output */
785
785
Kind_Average; /*!< \brief Particular average for the marker analyze. */
786
-
unsignedshort
787
-
nPolyCoeffs; /*!< \brief Number of coefficients in temperature polynomial fits for fluid models. */
788
786
su2double Gamma, /*!< \brief Ratio of specific heats of the gas. */
789
787
Bulk_Modulus, /*!< \brief Value of the bulk modulus for incompressible flows. */
790
788
Beta_Factor, /*!< \brief Value of the epsilon^2 multiplier for Beta for the incompressible preconditioner. */
@@ -818,14 +816,14 @@ class CConfig {
818
816
Mu_Temperature_Ref, /*!< \brief Reference temperature for Sutherland model. */
819
817
Mu_Temperature_RefND, /*!< \brief Non-dimensional reference temperature for Sutherland model. */
820
818
Mu_S, /*!< \brief Reference S for Sutherland model. */
821
-
Mu_SND,/*!< \brief Non-dimensional reference S for Sutherland model. */
822
-
*CpPolyCoefficients,/*!< \brief Definition of the temperature polynomial coefficients for specific heat Cp. */
823
-
*MuPolyCoefficients,/*!< \brief Definition of the temperature polynomial coefficients for viscosity. */
824
-
*KtPolyCoefficients,/*!< \brief Definition of the temperature polynomial coefficients for thermal conductivity. */
825
-
*CpPolyCoefficientsND,/*!< \brief Definition of the non-dimensional temperature polynomial coefficients for specific heat Cp. */
826
-
*MuPolyCoefficientsND,/*!< \brief Definition of the non-dimensional temperature polynomial coefficients for viscosity. */
827
-
*KtPolyCoefficientsND,/*!< \brief Definition of the non-dimensional temperature polynomial coefficients for thermal conductivity. */
828
-
Thermal_Conductivity_Solid, /*!< \brief Thermal conductivity in solids. */
819
+
Mu_SND;/*!< \brief Non-dimensional reference S for Sutherland model. */
820
+
su2double* CpPolyCoefficients;/*!< \brief Definition of the temperature polynomial coefficients for specific heat Cp. */
821
+
su2double* MuPolyCoefficients;/*!< \brief Definition of the temperature polynomial coefficients for viscosity. */
822
+
su2double* KtPolyCoefficients;/*!< \brief Definition of the temperature polynomial coefficients for thermal conductivity. */
823
+
array<su2double, N_POLY_COEFFS> CpPolyCoefficientsND{0.0};/*!< \brief Definition of the non-dimensional temperature polynomial coefficients for specific heat Cp. */
824
+
array<su2double, N_POLY_COEFFS>MuPolyCoefficientsND{0.0};/*!< \brief Definition of the non-dimensional temperature polynomial coefficients for viscosity. */
825
+
array<su2double, N_POLY_COEFFS>KtPolyCoefficientsND{0.0};/*!< \brief Definition of the non-dimensional temperature polynomial coefficients for thermal conductivity. */
826
+
su2double Thermal_Conductivity_Solid, /*!< \brief Thermal conductivity in solids. */
829
827
Thermal_Diffusivity_Solid, /*!< \brief Thermal diffusivity in solids. */
830
828
Temperature_Freestream_Solid, /*!< \brief Temperature in solids at freestream conditions. */
831
829
Density_Solid, /*!< \brief Total density in solids. */
@@ -1018,9 +1016,9 @@ class CConfig {
1018
1016
su2double FinalRotation_Rate_Z; /*!< \brief Final rotation rate Z if Ramp rotating frame is activated. */
1019
1017
su2double FinalOutletPressure; /*!< \brief Final outlet pressure if Ramp outlet pressure is activated. */
1020
1018
su2double MonitorOutletPressure; /*!< \brief Monitor outlet pressure if Ramp outlet pressure is activated. */
1021
-
su2double *default_cp_polycoeffs; /*!< \brief Array for specific heat polynomial coefficients. */
1022
-
su2double *default_mu_polycoeffs; /*!< \brief Array for viscosity polynomial coefficients. */
/*!\brief REYNOLDS_NUMBER \n DESCRIPTION: Reynolds number (non-dimensional, based on the free-stream values). Needed for viscous solvers. For incompressible solvers the Reynolds length will always be 1.0 \n DEFAULT: 0.0 \ingroup Config */
0 commit comments