From 51c88c81d268e149a9f3c51cd949bb729f501b94 Mon Sep 17 00:00:00 2001 From: Oliver Sander <oliver.sander@tu-dresden.de> Date: Sat, 27 Feb 2021 17:48:00 +0100 Subject: [PATCH] Add material parameters to output file name --- src/quasiconvexity-test-micromorphic.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/quasiconvexity-test-micromorphic.cc b/src/quasiconvexity-test-micromorphic.cc index 5f41b95..f8ab478 100644 --- a/src/quasiconvexity-test-micromorphic.cc +++ b/src/quasiconvexity-test-micromorphic.cc @@ -377,7 +377,7 @@ int main (int argc, char *argv[]) try elasticEnergy->setLc(parameterSet.get<double>("L_c")); std::cout << "Energy with regularization: " << assembler.computeEnergy(x) << std::endl; - writeDisplacement(feBasis, x, F0, resultPath + "quasiconvexity-test-micromorphic-result"); + writeDisplacement(feBasis, x, F0, resultPath + "quasiconvexity-test-micromorphic-result_" + std::to_string(L_c) + "_" + std::to_string(x0)); } catch (Exception& e) { std::cout << e.what() << std::endl; -- GitLab