From 428f746c68d1e978ffbdf1e36e822efcf63ecc6e Mon Sep 17 00:00:00 2001 From: Mark Olesen Date: Thu, 12 Apr 2018 13:51:51 +0200 Subject: [PATCH] STYLE: include temperature (T) in the default paraFoam pre-selection --- .../graphics/PVReaders/vtkPVFoam/vtkPVFoamUpdateInfo.C | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/applications/utilities/postProcessing/graphics/PVReaders/vtkPVFoam/vtkPVFoamUpdateInfo.C b/applications/utilities/postProcessing/graphics/PVReaders/vtkPVFoam/vtkPVFoamUpdateInfo.C index 391bf07782..91f8ef7c3c 100644 --- a/applications/utilities/postProcessing/graphics/PVReaders/vtkPVFoam/vtkPVFoamUpdateInfo.C +++ b/applications/utilities/postProcessing/graphics/PVReaders/vtkPVFoam/vtkPVFoamUpdateInfo.C @@ -587,8 +587,8 @@ void Foam::vtkPVFoam::updateInfoContinuumFields HashSet enabled; if (!select->GetNumberOfArrays() && !volMeshPtr_) { - // First call: automatically enable 'p' and 'U' - enabled = { "p", "U" }; + // First call: automatically enable pressure, temperature, velocity + enabled = { "p", "T", "U" }; } else {