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
unsignedshort nQuasiNewtonSamples; /*!< \brief Number of samples used in quasi-Newton solution methods. */
415
+
415
416
unsignedshort nMGLevels; /*!< \brief Number of multigrid levels (coarse levels). */
416
417
unsignedshort nCFL; /*!< \brief Number of CFL, one for each multigrid level. */
417
418
su2double
@@ -783,8 +784,6 @@ class CConfig {
783
784
unsignedshort
784
785
Console_Output_Verb, /*!< \brief Level of verbosity for console output */
785
786
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
787
su2double Gamma, /*!< \brief Ratio of specific heats of the gas. */
789
788
Bulk_Modulus, /*!< \brief Value of the bulk modulus for incompressible flows. */
790
789
Beta_Factor, /*!< \brief Value of the epsilon^2 multiplier for Beta for the incompressible preconditioner. */
@@ -818,14 +817,14 @@ class CConfig {
818
817
Mu_Temperature_Ref, /*!< \brief Reference temperature for Sutherland model. */
819
818
Mu_Temperature_RefND, /*!< \brief Non-dimensional reference temperature for Sutherland model. */
820
819
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. */
820
+
Mu_SND;/*!< \brief Non-dimensional reference S for Sutherland model. */
821
+
su2double* CpPolyCoefficients;/*!< \brief Definition of the temperature polynomial coefficients for specific heat Cp. */
822
+
su2double* MuPolyCoefficients;/*!< \brief Definition of the temperature polynomial coefficients for viscosity. */
823
+
su2double* KtPolyCoefficients;/*!< \brief Definition of the temperature polynomial coefficients for thermal conductivity. */
824
+
array<su2double, N_POLY_COEFFS> CpPolyCoefficientsND{{0.0}};/*!< \brief Definition of the non-dimensional temperature polynomial coefficients for specific heat Cp. */
825
+
array<su2double, N_POLY_COEFFS> MuPolyCoefficientsND{{0.0}};/*!< \brief Definition of the non-dimensional temperature polynomial coefficients for viscosity. */
826
+
array<su2double, N_POLY_COEFFS> KtPolyCoefficientsND{{0.0}};/*!< \brief Definition of the non-dimensional temperature polynomial coefficients for thermal conductivity. */
827
+
su2double Thermal_Conductivity_Solid, /*!< \brief Thermal conductivity in solids. */
829
828
Thermal_Diffusivity_Solid, /*!< \brief Thermal diffusivity in solids. */
830
829
Temperature_Freestream_Solid, /*!< \brief Temperature in solids at freestream conditions. */
831
830
Density_Solid, /*!< \brief Total density in solids. */
@@ -1018,9 +1017,9 @@ class CConfig {
1018
1017
su2double FinalRotation_Rate_Z; /*!< \brief Final rotation rate Z if Ramp rotating frame is activated. */
1019
1018
su2double FinalOutletPressure; /*!< \brief Final outlet pressure if Ramp outlet pressure is activated. */
1020
1019
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. */
0 commit comments