Skip to content
Snippets Groups Projects
Commit 6d3e1417 authored by Benjamin Faigle's avatar Benjamin Faigle
Browse files

vtk writer again checks for small numbers to enable output in paraview.

git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@6356 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 1b3d0098
No related branches found
No related tags found
No related merge requests found
...@@ -197,6 +197,8 @@ public: ...@@ -197,6 +197,8 @@ public:
template <class DataBuffer> template <class DataBuffer>
void attachVertexData(DataBuffer &buf, const char *name, int nComps=1) void attachVertexData(DataBuffer &buf, const char *name, int nComps=1)
{ {
sanitizeBuffer_(buf, nComps);
typedef typename VtkWriter::VTKFunctionPtr FunctionPtr; typedef typename VtkWriter::VTKFunctionPtr FunctionPtr;
typedef Dumux::VtkNestedFunction<Grid, VertexMapper, DataBuffer> VtkFn; typedef Dumux::VtkNestedFunction<Grid, VertexMapper, DataBuffer> VtkFn;
FunctionPtr fnPtr(new VtkFn(name, FunctionPtr fnPtr(new VtkFn(name,
...@@ -235,6 +237,8 @@ public: ...@@ -235,6 +237,8 @@ public:
template <class DataBuffer> template <class DataBuffer>
void attachCellData(DataBuffer &buf, const char *name, int nComps = 1) void attachCellData(DataBuffer &buf, const char *name, int nComps = 1)
{ {
sanitizeBuffer_(buf, nComps);
typedef typename VtkWriter::VTKFunctionPtr FunctionPtr; typedef typename VtkWriter::VTKFunctionPtr FunctionPtr;
typedef Dumux::VtkNestedFunction<Grid, ElementMapper, DataBuffer> VtkFn; typedef Dumux::VtkNestedFunction<Grid, ElementMapper, DataBuffer> VtkFn;
FunctionPtr fnPtr(new VtkFn(name, FunctionPtr fnPtr(new VtkFn(name,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment