From f79f2af489098104dc33ee156b773e90e14f6df1 Mon Sep 17 00:00:00 2001 From: Klaus <klaus.boehnlein@tu-dresden.de> Date: Sat, 11 Dec 2021 23:33:21 +0100 Subject: [PATCH] correct string output when using parametrizedLaminate --- dune/microstructure/prestrain_material_geometry.hh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dune/microstructure/prestrain_material_geometry.hh b/dune/microstructure/prestrain_material_geometry.hh index e1f4f23c..27fed7b4 100644 --- a/dune/microstructure/prestrain_material_geometry.hh +++ b/dune/microstructure/prestrain_material_geometry.hh @@ -457,6 +457,7 @@ public: auto lambdaTerm = [lambda1,lambda2, theta] (const Domain& z) { // std::cout << "Analytical-LAMBDA is used" << std::endl; //TEST +// if (abs(z[0]) > (theta/2.0)) if (abs(z[0]) > (theta/2.0)) return lambda1; else @@ -882,7 +883,7 @@ public: else return MatrixRT{{0.0, 0.0 , 0.0}, {0.0, 0.0, 0.0}, {0.0, 0.0, 0.0}}; }; - std::cout <<" Prestrain Type: analytical_Example "<< std::endl; + std::cout <<"Prestrain Type: parametrized_Laminate"<< std::endl; return B; } else if (imp == "circle_fiber"){ -- GitLab