From 7d7e012e910cca5ace68a02e9bbd6ff6b2e6506c Mon Sep 17 00:00:00 2001
From: Kutalmis Bercin <kutalmis.bercin@esi-group.com>
Date: Mon, 19 Jul 2021 13:33:04 +0100
Subject: [PATCH] ENH: KirchhoffShell: simplification of log output

---
 src/regionFaModels/KirchhoffShell/KirchhoffShell.C | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/src/regionFaModels/KirchhoffShell/KirchhoffShell.C b/src/regionFaModels/KirchhoffShell/KirchhoffShell.C
index 577a5262e11..bb1a01d1fd7 100644
--- a/src/regionFaModels/KirchhoffShell/KirchhoffShell.C
+++ b/src/regionFaModels/KirchhoffShell/KirchhoffShell.C
@@ -5,7 +5,7 @@
     \\  /    A nd           | www.openfoam.com
      \\/     M anipulation  |
 -------------------------------------------------------------------------------
-    Copyright (C) 2019-2020 OpenCFD Ltd.
+    Copyright (C) 2019-2021 OpenCFD Ltd.
 -------------------------------------------------------------------------------
 License
     This file is part of OpenFOAM.
@@ -107,7 +107,9 @@ void KirchhoffShell::solveDisplacement()
 
         wEqn.solve();
 
-        Info<< "w min/max   = " << min(w_) << ", " << max(w_) << endl;
+        Info<< "ws_vibrationShell: "
+            << "min = " << min(w_).value() << ", "
+            << "max = " << max(w_).value() << endl;
 
         if (wSubCycle.index() >= wSubCycle.nSubCycles())
         {
-- 
GitLab