@@ -60,7 +60,7 @@ CFlowIncOutput::CFlowIncOutput(CConfig *config, unsigned short nDim) : CFlowOutp
6060 requestedVolumeFields.emplace_back (" COORDINATES" );
6161 requestedVolumeFields.emplace_back (" SOLUTION" );
6262 requestedVolumeFields.emplace_back (" PRIMITIVE" );
63- if (config->GetGrid_Movement ()) requestedVolumeFields.emplace_back (" GRID_VELOCITY" );
63+ if (config->GetDynamic_Grid ()) requestedVolumeFields.emplace_back (" GRID_VELOCITY" );
6464 nRequestedVolumeFields = requestedVolumeFields.size ();
6565 }
6666
@@ -383,7 +383,7 @@ void CFlowIncOutput::SetVolumeOutputFields(CConfig *config){
383383 AddVolumeOutput (" P1-RAD" , " Radiative_Energy(P1)" , " SOLUTION" , " Radiative Energy" );
384384
385385 // Grid velocity
386- if (config->GetGrid_Movement ()){
386+ if (config->GetDynamic_Grid ()){
387387 AddVolumeOutput (" GRID_VELOCITY-X" , " Grid_Velocity_x" , " GRID_VELOCITY" , " x-component of the grid velocity vector" );
388388 AddVolumeOutput (" GRID_VELOCITY-Y" , " Grid_Velocity_y" , " GRID_VELOCITY" , " y-component of the grid velocity vector" );
389389 if (nDim == 3 )
@@ -537,7 +537,7 @@ void CFlowIncOutput::LoadVolumeData(CConfig *config, CGeometry *geometry, CSolve
537537 SetVolumeOutputValue (" P1-RAD" , iPoint, Node_Rad->GetSolution (iPoint,0 ));
538538 }
539539
540- if (config->GetGrid_Movement ()){
540+ if (config->GetDynamic_Grid ()){
541541 SetVolumeOutputValue (" GRID_VELOCITY-X" , iPoint, Node_Geo->GetGridVel (iPoint)[0 ]);
542542 SetVolumeOutputValue (" GRID_VELOCITY-Y" , iPoint, Node_Geo->GetGridVel (iPoint)[1 ]);
543543 if (nDim == 3 )
0 commit comments