@@ -330,7 +330,8 @@ void CFlowIncOutput::SetVolumeOutputFields(CConfig *config){
330330 AddVolumeOutput (" LAMINAR_VISCOSITY" , " Laminar_Viscosity" , " PRIMITIVE" , " Laminar viscosity" );
331331 AddVolumeOutput (" HEAT_CAPACITY" , " Heat_Capacity" , " PRIMITIVE" , " Heat capacity" );
332332 AddVolumeOutput (" THERMAL_CONDUCTIVITY" , " Thermal_Conductivity" , " PRIMITIVE" , " Thermal conductivity" );
333- if (heat || flamelet) AddVolumeOutput (" TEMPERATURE" , " Temperature" , " PRIMITIVE" , " Temperature" );
333+ if (!weakly_coupled_heat)
334+ AddVolumeOutput (" TEMPERATURE" , " Temperature" , " PRIMITIVE" , " Temperature" );
334335
335336 AddVolumeOutput (" SKIN_FRICTION-X" , " Skin_Friction_Coefficient_x" , " PRIMITIVE" , " x-component of the skin friction vector" );
336337 AddVolumeOutput (" SKIN_FRICTION-Y" , " Skin_Friction_Coefficient_y" , " PRIMITIVE" , " y-component of the skin friction vector" );
@@ -354,7 +355,7 @@ void CFlowIncOutput::SetVolumeOutputFields(CConfig *config){
354355 AddVolumeOutput (" RES_VELOCITY-Y" , " Residual_Velocity_y" , " RESIDUAL" , " Residual of the y-velocity component" );
355356 if (nDim == 3 )
356357 AddVolumeOutput (" RES_VELOCITY-Z" , " Residual_Velocity_z" , " RESIDUAL" , " Residual of the z-velocity component" );
357- if (config-> GetEnergy_Equation () ){
358+ if (heat ){
358359 AddVolumeOutput (" RES_ENTHALPY" , " Residual_Enthalpy" , " RESIDUAL" , " Residual of the enthalpy" );
359360 }
360361 SetVolumeOutputFieldsScalarResidual (config);
@@ -440,7 +441,8 @@ void CFlowIncOutput::LoadVolumeData(CConfig *config, CGeometry *geometry, CSolve
440441 SetVolumeOutputValue (" LAMINAR_VISCOSITY" , iPoint, Node_Flow->GetLaminarViscosity (iPoint));
441442 SetVolumeOutputValue (" HEAT_CAPACITY" , iPoint, Node_Flow->GetSpecificHeatCp (iPoint));
442443 SetVolumeOutputValue (" THERMAL_CONDUCTIVITY" , iPoint, Node_Flow->GetThermalConductivity (iPoint));
443- if (heat || flamelet) SetVolumeOutputValue (" TEMPERATURE" , iPoint, Node_Flow->GetTemperature (iPoint));
444+ if (!weakly_coupled_heat)
445+ SetVolumeOutputValue (" TEMPERATURE" , iPoint, Node_Flow->GetTemperature (iPoint));
444446 }
445447
446448 SetVolumeOutputValue (" RES_PRESSURE" , iPoint, solver[FLOW_SOL]->LinSysRes (iPoint, 0 ));
0 commit comments