From 1c8e18e97670e7944d1b42aaee1f20c1ddf778ec Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Fri, 15 Feb 2019 12:01:47 +0100 Subject: Improve Knudsen refinement criterion functor i.e. output cell-local quality information by default --- apps/adrian/cylinder2d/common/model.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/apps/adrian/cylinder2d/common/model.h b/apps/adrian/cylinder2d/common/model.h index 89b276b..d70208a 100644 --- a/apps/adrian/cylinder2d/common/model.h +++ b/apps/adrian/cylinder2d/common/model.h @@ -170,10 +170,12 @@ void getResults(Grid2D& grid, SuperLatticePhysPressure2D pressure(sLattice, converter); SuperLatticeGeometry2D geometry(sLattice, sGeometry); SuperLatticeKnudsen2D knudsen(sLattice); + SuperLatticeRefinementMetricKnudsen2D quality(sLattice, converter); vtmWriter.addFunctor(geometry); vtmWriter.addFunctor(velocity); vtmWriter.addFunctor(pressure); vtmWriter.addFunctor(knudsen); + vtmWriter.addFunctor(quality); if (iT==0) { vtmWriter.createMasterFile(); -- cgit v1.2.3