@@ -369,12 +369,14 @@ void CFlowCompOutput::SetVolumeOutputFields(CConfig *config){
369369 }
370370
371371 // Limiter values
372+ AddVolumeOutput (" LIMITER_VELOCITY-X" , " Limiter_Velocity_x" , " LIMITER" , " Limiter value of the x-velocity" );
373+ AddVolumeOutput (" LIMITER_VELOCITY-Y" , " Limiter_Velocity_y" , " LIMITER" , " Limiter value of the y-velocity" );
374+ if (nDim == 3 ) {
375+ AddVolumeOutput (" LIMITER_VELOCITY-Z" , " Limiter_Velocity_z" , " LIMITER" , " Limiter value of the z-velocity" );
376+ }
377+ AddVolumeOutput (" LIMITER_PRESSURE" , " Limiter_Pressure" , " LIMITER" , " Limiter value of the pressure" );
372378 AddVolumeOutput (" LIMITER_DENSITY" , " Limiter_Density" , " LIMITER" , " Limiter value of the density" );
373- AddVolumeOutput (" LIMITER_MOMENTUM-X" , " Limiter_Momentum_x" , " LIMITER" , " Limiter value of the x-momentum" );
374- AddVolumeOutput (" LIMITER_MOMENTUM-Y" , " Limiter_Momentum_y" , " LIMITER" , " Limiter value of the y-momentum" );
375- if (nDim == 3 )
376- AddVolumeOutput (" LIMITER_MOMENTUM-Z" , " Limiter_Momentum_z" , " LIMITER" , " Limiter value of the z-momentum" );
377- AddVolumeOutput (" LIMITER_ENERGY" , " Limiter_Energy" , " LIMITER" , " Limiter value of the energy" );
379+ AddVolumeOutput (" LIMITER_ENTHALPY" , " Limiter_Enthalpy" , " LIMITER" , " Limiter value of the enthalpy" );
378380
379381 switch (config->GetKind_Turb_Model ()){
380382 case SST: case SST_SUST:
@@ -510,15 +512,14 @@ void CFlowCompOutput::LoadVolumeData(CConfig *config, CGeometry *geometry, CSolv
510512 break ;
511513 }
512514
513- SetVolumeOutputValue (" LIMITER_DENSITY" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, 0 ));
514- SetVolumeOutputValue (" LIMITER_MOMENTUM-X" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, 1 ));
515- SetVolumeOutputValue (" LIMITER_MOMENTUM-Y" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, 2 ));
515+ SetVolumeOutputValue (" LIMITER_VELOCITY-X" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, 1 ));
516+ SetVolumeOutputValue (" LIMITER_VELOCITY-Y" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, 2 ));
516517 if (nDim == 3 ){
517- SetVolumeOutputValue (" LIMITER_MOMENTUM-Z" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, 3 ));
518- SetVolumeOutputValue (" LIMITER_ENERGY" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, 4 ));
519- } else {
520- SetVolumeOutputValue (" LIMITER_ENERGY" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, 3 ));
518+ SetVolumeOutputValue (" LIMITER_VELOCITY-Z" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, 3 ));
521519 }
520+ SetVolumeOutputValue (" LIMITER_PRESSURE" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, nDim+1 ));
521+ SetVolumeOutputValue (" LIMITER_DENSITY" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, nDim+2 ));
522+ SetVolumeOutputValue (" LIMITER_ENTHALPY" , iPoint, Node_Flow->GetLimiter_Primitive (iPoint, nDim+3 ));
522523
523524 switch (config->GetKind_Turb_Model ()){
524525 case SST: case SST_SUST:
0 commit comments