From 7c03b1402ec7f2e9f66ff9ea8d13f797601ccf17 Mon Sep 17 00:00:00 2001 From: Adrian Kummerlaender Date: Thu, 18 Oct 2018 20:10:30 +0200 Subject: Write distinct VTK files for each experiment --- channel.cc | 2 +- lid_driven_cavity.cc | 2 +- poiseuille.cc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/channel.cc b/channel.cc index b1a6166..b0bfec1 100644 --- a/channel.cc +++ b/channel.cc @@ -102,7 +102,7 @@ int main() { if ( t % 1000 == 0 ) { std::cout << "."; std::cout.flush(); - fluid.writeAsVTK("result/data_t" + std::to_string(t) + ".vtk"); + fluid.writeAsVTK("result/channel_t" + std::to_string(t) + ".vtk"); } } diff --git a/lid_driven_cavity.cc b/lid_driven_cavity.cc index 7a978ad..376da2e 100644 --- a/lid_driven_cavity.cc +++ b/lid_driven_cavity.cc @@ -81,7 +81,7 @@ int main() { if ( t % 1000 == 0 ) { std::cout << "."; std::cout.flush(); - fluid.writeAsVTK("result/data_t" + std::to_string(t) + ".vtk"); + fluid.writeAsVTK("result/lid_driven_cavity_t" + std::to_string(t) + ".vtk"); } } diff --git a/poiseuille.cc b/poiseuille.cc index b6c9616..9075f92 100644 --- a/poiseuille.cc +++ b/poiseuille.cc @@ -98,7 +98,7 @@ int main() { if ( t % 1000 == 0 ) { std::cout << error(dimX-1) << std::endl; - fluid.writeAsVTK("result/data_t" + std::to_string(t) + ".vtk"); + fluid.writeAsVTK("result/poiseuille_t" + std::to_string(t) + ".vtk"); } } } -- cgit v1.2.3