File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -771,7 +771,7 @@ class CNumerics {
771771 * \param[in] val_jacheatfluxdiffusion - Value of the heat flux jacobian due to enthalpy diffusion.
772772 */
773773 inline void SetJacHeatFluxDiffusion (su2double val_jacheatfluxdiffusion) {
774- Jac_HeatFluxDiffusion = val_jac_heatfluxdiffusion ;
774+ JacHeatFluxDiffusion = val_jacheatfluxdiffusion ;
775775 }
776776
777777 /* !
Original file line number Diff line number Diff line change @@ -659,9 +659,9 @@ CNumerics::ResidualType<> CAvgGradInc_Flow::ComputeResidual(const CConfig* confi
659659 if (energy_multicomponent){
660660 Mean_Heat_Capacity = 0.5 * (V_i[nDim + 7 ] + V_j[nDim + 7 ]);
661661 Jacobian_i[nDim + 1 ][nDim + 1 ] =
662- -(Mean_Thermal_Conductivity * proj_vector_ij + Jac_HeatFluxDiffusion ) / Mean_Heat_Capacity;
662+ -(Mean_Thermal_Conductivity * proj_vector_ij + JacHeatFluxDiffusion ) / Mean_Heat_Capacity;
663663 Jacobian_j[nDim + 1 ][nDim + 1 ] =
664- (Mean_Thermal_Conductivity * proj_vector_ij + Jac_HeatFluxDiffusion ) / Mean_Heat_Capacity;
664+ (Mean_Thermal_Conductivity * proj_vector_ij + JacHeatFluxDiffusion ) / Mean_Heat_Capacity;
665665 } else {
666666 Jacobian_i[nDim + 1 ][nDim + 1 ] = -Mean_Thermal_Conductivity * proj_vector_ij;
667667 Jacobian_j[nDim + 1 ][nDim + 1 ] = Mean_Thermal_Conductivity * proj_vector_ij;
Original file line number Diff line number Diff line change @@ -337,7 +337,7 @@ CNumerics::ResidualType<> CSourceIncAxisymmetric_Flow::ComputeResidual(const CCo
337337 residual[3 ] -= Volume * yinv * Thermal_Conductivity_i * PrimVar_Grad_i[nDim + 1 ][1 ];
338338 if (multicomponent && energy) {
339339 residual[3 ] -= Volume * yinv * HeatFluxDiffusion;
340- if (implicit) jacobian[3 ][3 ] -= Volume * yinv * Jac_HeatFluxDiffusion / Cp_i;
340+ if (implicit) jacobian[3 ][3 ] -= Volume * yinv * JacHeatFluxDiffusion / Cp_i;
341341 }
342342 }
343343
You can’t perform that action at this time.
0 commit comments