@@ -365,8 +365,9 @@ void CFlowIncOutput::SetVolumeOutputFields(CConfig *config){
365365 AddVolumeOutput (" LIMITER_VELOCITY-Y" , " Limiter_Velocity_y" , " LIMITER" , " Limiter value of the y-velocity" );
366366 if (nDim == 3 )
367367 AddVolumeOutput (" LIMITER_VELOCITY-Z" , " Limiter_Velocity_z" , " LIMITER" , " Limiter value of the z-velocity" );
368- if (heat || weakly_coupled_heat || flamelet )
368+ if (weakly_coupled_heat)
369369 AddVolumeOutput (" LIMITER_TEMPERATURE" , " Limiter_Temperature" , " LIMITER" , " Limiter value of the temperature" );
370+ if (heat) AddVolumeOutput (" LIMITER_ENTHALPY" , " Limiter_Enthalpy" , " LIMITER" , " Limiter value of the enthalpy" );
370371 }
371372
372373 SetVolumeOutputFieldsScalarLimiter (config);
@@ -454,8 +455,10 @@ void CFlowIncOutput::LoadVolumeData(CConfig *config, CGeometry *geometry, CSolve
454455 SetVolumeOutputValue (" LIMITER_VELOCITY-Y" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, 2 ));
455456 if (nDim == 3 )
456457 SetVolumeOutputValue (" LIMITER_VELOCITY-Z" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, 3 ));
457- if (heat || weakly_coupled_heat)
458+ if (weakly_coupled_heat)
458459 SetVolumeOutputValue (" LIMITER_TEMPERATURE" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, nDim+1 ));
460+ if (heat)
461+ SetVolumeOutputValue (" LIMITER_ENTHALPY" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, nDim+1 ));
459462 }
460463
461464 // All turbulence and species outputs.
0 commit comments