20#ifndef DUNE_GRIDGLUE_EXTRACTORS_VTKSURFACEWRITER_HH
21#define DUNE_GRIDGLUE_EXTRACTORS_VTKSURFACEWRITER_HH
28#include "../adapter/gridgluevtkwriter.hh"
39 VtkSurfaceWriter(
const char* filename) : filename_(filename)
45 void setFilename(
const char* name)
47 if (std::strlen(name) > 0)
48 this->filename_ = name;
53 void writeSurface(
const std::vector<K>& coords,
const std::vector<unsigned int>& indices,
int corners,
int dim)
57 sprintf(buffer,
"%s.vtk", this->filename_);
59 fos << std::setprecision(8) << std::setw(1);
61 fos <<
"# vtk DataFile Version 2.0\nFilename: " << buffer <<
"\nASCII" << std::endl;
62 this->writePoints(coords, dim, fos);
63 const int polycount = indices.size()/corners;
64 int corner_count[polycount];
65 for (
int i = 0; i < polycount; ++i)
66 corner_count[i] = corners;
67 this->writePolygons(indices, corner_count, polycount, dim, fos);
72 template<
typename K,
typename T>
73 void writeSurfaceElementData(
const std::vector<K>& coords,
const std::vector<unsigned int>& indices,
int corners,
const std::vector<T>& data,
const char* dataname,
int dim)
77 sprintf(buffer,
"%s.vtk", this->filename_);
79 fos << std::setprecision(8) << std::setw(1);
81 fos <<
"# vtk DataFile Version 2.0\nFilename: " << buffer <<
"\nASCII" << std::endl;
82 this->writePoints(coords, dim, fos);
83 const int polycount = indices.size()/corners;
84 int corner_count[polycount];
85 for (
int i = 0; i < polycount; ++i)
86 corner_count[i] = corners;
87 this->writePolygons(indices, corner_count, polycount, dim, fos);
88 this->writeCellData(data, dataname, dim, fos);
93 template<
typename K,
typename T>
94 void writeSurfaceVertexData(
const std::vector<K>& coords,
const std::vector<unsigned int>& indices,
int corners,
const std::vector<T>& data,
const char* dataname,
int dim)
98 sprintf(buffer,
"%s.vtk", this->filename_);
100 fos << std::setprecision(8) << std::setw(1);
102 fos <<
"# vtk DataFile Version 2.0\nFilename: " << buffer <<
"\nASCII" << std::endl;
103 this->writePoints(coords, dim, fos);
104 const int polycount = indices.size()/corners;
105 int corner_count[polycount];
106 for (
int i = 0; i < polycount; ++i)
107 corner_count[i] = corners;
108 this->writePolygons(indices, corner_count, polycount, dim, fos);
109 this->writePointData(data, dataname, dim, fos);
116 void writePoints(
const std::vector<K>& coords,
int dim, std::ofstream& fos)
118 fos <<
"DATASET POLYDATA\nPOINTS " << coords.size() <<
" " << TypeNames[Nametraits<K>::nameidx] << std::endl;
119 for (
unsigned int i = 0; i < coords.size(); ++i)
123 fos <<
" " << coords[i][1] <<
" 0 \n" << coords[i][0] <<
" " << coords[i][1] <<
" 0.01" << std::endl;
125 fos <<
" " << coords[i][1] <<
" " << coords[i][2] << std::endl;
129 void writePolygons(
const std::vector<unsigned int>& indices,
const int* corners,
int ncorners,
int dim, std::ofstream& fos)
133 fos <<
"POLYGONS " << indices.size()/2 <<
" " << 5*(indices.size() / 2) << std::endl;
134 for (
unsigned int i = 0; i < indices.size(); i += 2)
135 fos <<
"4 " << 2*indices[i] <<
" " << 2*indices[i+1] <<
" " << 2*indices[i+1]+1 <<
" "<< 2*indices[i]+1 << std::endl;
161 for (
int i = 0; i < ncorners; ++i)
163 fos <<
"POLYGONS " << ncorners <<
" " << sum << std::endl;
165 for (
int i = 0; i < ncorners; ++i)
168 for (
int j = 0; j < corners[i]; ++j)
169 fos <<
" " << indices[index++];
176 void writeCellData(
const std::vector<T>& data,
const char* dataname,
int dim, std::ofstream& fos)
178 fos <<
"CELL_DATA " << data.size()*(dim == 2 ? 2 : 1) << std::endl;
179 fos <<
"SCALARS " << dataname <<
" " << TypeNames[Nametraits<T>::nameidx] <<
" 1" << std::endl;
180 fos <<
"LOOKUP_TABLE default" << std::endl;
181 for (
unsigned int i = 0; i < data.size(); ++i)
183 fos << data[i] << std::endl;
185 fos << data[i] << std::endl;
190 void writePointData(
const std::vector<T>& data,
const char* dataname,
int dim, std::ofstream& fos)
192 fos <<
"POINT_DATA " << data.size()*(dim == 2 ? 2 : 1) << std::endl;
193 fos <<
"SCALARS " << dataname <<
" " << TypeNames[Nametraits<T>::nameidx] <<
" 1" << std::endl;
194 fos <<
"LOOKUP_TABLE default" << std::endl;
195 for (
unsigned int i = 0; i < data.size(); ++i)
197 fos << data[i] << std::endl;
199 fos << data[i] << std::endl;
205 const char* filename_;