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
@@ -820,9 +821,9 @@ class CConfig {
820
821
su2double* CpPolyCoefficients; /*!< \brief Definition of the temperature polynomial coefficients for specific heat Cp. */
821
822
su2double* MuPolyCoefficients; /*!< \brief Definition of the temperature polynomial coefficients for viscosity. */
822
823
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. */
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. */
826
827
su2double Thermal_Conductivity_Solid, /*!< \brief Thermal conductivity in solids. */
827
828
Thermal_Diffusivity_Solid, /*!< \brief Thermal diffusivity in solids. */
828
829
Temperature_Freestream_Solid, /*!< \brief Temperature in solids at freestream conditions. */
@@ -1016,9 +1017,9 @@ class CConfig {
1016
1017
su2double FinalRotation_Rate_Z; /*!< \brief Final rotation rate Z if Ramp rotating frame is activated. */
1017
1018
su2double FinalOutletPressure; /*!< \brief Final outlet pressure if Ramp outlet pressure is activated. */
1018
1019
su2double MonitorOutletPressure; /*!< \brief Monitor outlet pressure if Ramp outlet pressure is activated. */
1019
-
array<su2double, N_POLY_COEFFS> default_cp_polycoeffs{0.0}; /*!< \brief Array for specific heat polynomial coefficients. */
0 commit comments