From decd4564e159b19215a96e9868e182596cdf4d0c Mon Sep 17 00:00:00 2001 From: Timo Koch <timo.koch@iws.uni-stuttgart.de> Date: Fri, 27 Oct 2017 09:35:56 +0200 Subject: [PATCH] [ni] Use new addVolVar vtk function method --- dumux/porousmediumflow/nonisothermal/implicit/model.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dumux/porousmediumflow/nonisothermal/implicit/model.hh b/dumux/porousmediumflow/nonisothermal/implicit/model.hh index 2e9262565e..22c4a0fd48 100644 --- a/dumux/porousmediumflow/nonisothermal/implicit/model.hh +++ b/dumux/porousmediumflow/nonisothermal/implicit/model.hh @@ -55,7 +55,7 @@ public: static void maybeAddTemperature(VtkOutputModule& vtkOutputModule) { // register vtk output field for temperature - vtkOutputModule.addPrimaryVariable("temperature", Indices::temperatureIdx); + vtkOutputModule.addVolumeVariable([](const auto& volVars){ return volVars.temperature(); }, "temperature"); } }; -- GitLab