From d6ff22e5e7321472b6b3e4d0688a5e2b13015460 Mon Sep 17 00:00:00 2001 From: Kutalmis Bercin Date: Mon, 19 Jul 2021 13:33:04 +0100 Subject: [PATCH 1/3] ENH: KirchhoffShell: simplification of log output --- src/regionFaModels/KirchhoffShell/KirchhoffShell.C | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/regionFaModels/KirchhoffShell/KirchhoffShell.C b/src/regionFaModels/KirchhoffShell/KirchhoffShell.C index 39c64de6a0..39b2639ff0 100644 --- a/src/regionFaModels/KirchhoffShell/KirchhoffShell.C +++ b/src/regionFaModels/KirchhoffShell/KirchhoffShell.C @@ -108,7 +108,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()) { From d9b200af287fef8ef82bb838ff929d14a0c2eac3 Mon Sep 17 00:00:00 2001 From: Matej Forman Date: Tue, 20 Jul 2021 09:47:04 +0100 Subject: [PATCH 2/3] TUT: rotatingFanInRoom: perturb locationInMesh (fixes #2162) --- .../pimpleFoam/RAS/rotatingFanInRoom/system/snappyHexMeshDict | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/snappyHexMeshDict b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/snappyHexMeshDict index 46ff1c4ba1..dd678f6ccb 100644 --- a/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/snappyHexMeshDict +++ b/tutorials/incompressible/pimpleFoam/RAS/rotatingFanInRoom/system/snappyHexMeshDict @@ -71,7 +71,7 @@ castellatedMeshControls // AMI{ mode inside; levels ((1E15 3));} } - locationInMesh (0.1 0.0 0.01); + locationInMesh (0.1001 0.001 0.0101); allowFreeStandingZoneFaces false; } From 6dedfe078aefabdfa829c0111408ce4b0f07ab4c Mon Sep 17 00:00:00 2001 From: Kutalmis Bercin Date: Mon, 19 Jul 2021 12:24:24 +0100 Subject: [PATCH 3/3] ENH: linear solvers: add variable-specific debug flags Introduces a new optional keyword of label type 'log' to linear-solver dictionaries to enable variable-specific debug statements. For example, in fvOptions file: solvers { p { solver GAMG; ... log 2; } U { ... log 0; } } The meanings of values of 'log' are: log 0;