@@ -191,7 +191,7 @@ class CNumerics {
191191
192192 bool nemo; /* !< \brief Flag for NEMO problems */
193193
194- bool energy_multicomponent = false ; /* !< \brief Flag for multicomponent and reacting flow */
194+ bool multicomponent = false ; /* !< \brief Flag for multicomponent and reacting flow */
195195
196196 bool bounded_scalar = false ; /* !< \brief Flag for bounded scalar problem */
197197
@@ -1058,8 +1058,7 @@ class CNumerics {
10581058 * \param[in] val_density - Value of the density.
10591059 * \param[in] val_velocity - Pointer to the velocity.
10601060 * \param[in] val_betainc2 - Value of the artificial compresibility factor.
1061- * \param[in] val_cp - Value of the specific heat at constant pressure.
1062- * \param[in] val_temperature - Value of the temperature.
1061+ * \param[in] val_enthalpy - Value of the enthalpy.
10631062 * \param[in] val_dRhodT - Value of the derivative of density w.r.t. temperature.
10641063 * \param[in] val_normal - Normal vector, the norm of the vector is the area of the face.
10651064 * \param[in] val_scale - Scale of the projection.
@@ -1068,8 +1067,7 @@ class CNumerics {
10681067 void GetInviscidIncProjJac (const su2double *val_density,
10691068 const su2double *val_velocity,
10701069 const su2double *val_betainc2,
1071- const su2double *val_cp,
1072- const su2double *val_temperature,
1070+ const su2double *val_enthalpy,
10731071 const su2double *val_dRhodT,
10741072 const su2double *val_normal,
10751073 su2double val_scale,
@@ -1080,17 +1078,15 @@ class CNumerics {
10801078 * \param[in] val_density - Value of the density.
10811079 * \param[in] val_velocity - Pointer to the velocity.
10821080 * \param[in] val_betainc2 - Value of the artificial compresibility factor.
1083- * \param[in] val_cp - Value of the specific heat at constant pressure.
1084- * \param[in] val_temperature - Value of the temperature.
1085- * \param[in] val_dRhodT - Value of the derivative of density w.r.t. temperature.
1081+ * \param[in] val_enthalpy - Value of the enthalpy.
1082+ * \param[in] val_dRhodh - Value of the derivative of density w.r.t. enthalpy.
10861083 * \param[out] val_Precon - Pointer to the preconditioning matrix.
10871084 */
10881085 void GetPreconditioner (const su2double *val_density,
10891086 const su2double *val_velocity,
10901087 const su2double *val_betainc2,
1091- const su2double *val_cp,
1092- const su2double *val_temperature,
1093- const su2double *val_drhodt,
1088+ const su2double *val_enthalpy,
1089+ const su2double *val_drhodh,
10941090 su2double **val_Precon) const ;
10951091
10961092 /* !
0 commit comments