aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2018-10-18 20:10:30 +0200
committerAdrian Kummerlaender2018-10-18 20:10:30 +0200
commit7c03b1402ec7f2e9f66ff9ea8d13f797601ccf17 (patch)
tree26788a9883e1b38bccc930e2353f403922a1a64a
parentf7d67879a40455da49520305549e10bb4c89e061 (diff)
downloadboltzbub-7c03b1402ec7f2e9f66ff9ea8d13f797601ccf17.tar
boltzbub-7c03b1402ec7f2e9f66ff9ea8d13f797601ccf17.tar.gz
boltzbub-7c03b1402ec7f2e9f66ff9ea8d13f797601ccf17.tar.bz2
boltzbub-7c03b1402ec7f2e9f66ff9ea8d13f797601ccf17.tar.lz
boltzbub-7c03b1402ec7f2e9f66ff9ea8d13f797601ccf17.tar.xz
boltzbub-7c03b1402ec7f2e9f66ff9ea8d13f797601ccf17.tar.zst
boltzbub-7c03b1402ec7f2e9f66ff9ea8d13f797601ccf17.zip
Write distinct VTK files for each experiment
-rw-r--r--channel.cc2
-rw-r--r--lid_driven_cavity.cc2
-rw-r--r--poiseuille.cc2
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");
}
}
}