summaryrefslogtreecommitdiff
path: root/c++
diff options
context:
space:
mode:
authorClaudius "keldu" Holeksa <mail@keldu.de>2025-08-15 18:59:46 +0200
committerClaudius "keldu" Holeksa <mail@keldu.de>2025-08-15 18:59:46 +0200
commit725e7644d737fe812c0c03cb5c781c9752ef20f2 (patch)
treefd206325d9bfdac9b3727e54b13be162a82b8f17 /c++
parent0e0da21fdadb2b924d42bf21ac6c881cf1abcf63 (diff)
Cleaned up some minor things
Diffstat (limited to 'c++')
-rw-r--r--c++/write_vtk.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/c++/write_vtk.hpp b/c++/write_vtk.hpp
index 55d4401..eb2545a 100644
--- a/c++/write_vtk.hpp
+++ b/c++/write_vtk.hpp
@@ -174,17 +174,6 @@ saw::error_or<void> write_vtk_file(const std::filesystem::path& file_name, const
auto eov = impl::lbm_vtk_writer<Struct>::apply(vtk_file, field);
return eov;
- /*
- vtk_file <<"# vtk DataFile Version 3.0\n";
- vtk_file <<"Velocity Cavity2D example\n";
- vtk_file <<"ASCII\n";
- vtk_file <<"DATASET STRUCTURED_POINTS\n";
- vtk_file <<"DIMENSIONS "<< dim_x <<" "<<dim_y<<" 1\n";
- vtk_file <<"SPACING 1.0 1.0 1.0\n";
- vtk_file <<"ORIGIN 0.0 0.0 0.0\n";
- vtk_file <<"POINT_DATA "<<(dim_x*dim_y)<<"\n";
- vtk_file <<"VECTORS Velocity float\n";
- */
}
}
}