From eeb2dbd13942667fa0267359a32ecf36d52275a7 Mon Sep 17 00:00:00 2001 From: Andrew Heather <a.heather@opencfd.co.uk> Date: Thu, 15 Oct 2015 16:43:53 +0100 Subject: [PATCH] STYLE: Lagrangian LocalPatchInteraction - updated output message for particle statistics --- .../LocalInteraction/LocalInteraction.C | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/LocalInteraction/LocalInteraction.C b/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/LocalInteraction/LocalInteraction.C index 77a6debde79..7a2a3edf495 100644 --- a/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/LocalInteraction/LocalInteraction.C +++ b/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/LocalInteraction/LocalInteraction.C @@ -3,7 +3,7 @@ \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2014 OpenFOAM Foundation - \\/ M anipulation | + \\/ M anipulation | Copyright (C) 2015 OpenCFD Ltd ------------------------------------------------------------------------------- License This file is part of OpenFOAM. @@ -284,6 +284,8 @@ bool Foam::LocalInteraction<CloudType>::correct template<class CloudType> void Foam::LocalInteraction<CloudType>::info(Ostream& os) { + PatchInteractionModel<CloudType>::info(os); + // retrieve any stored data labelList npe0(patchData_.size(), 0); this->getModelProperty("nEscape", npe0); @@ -317,8 +319,8 @@ void Foam::LocalInteraction<CloudType>::info(Ostream& os) forAll(patchData_, i) { - os << " Parcel fate (number, mass) : patch " - << patchData_[i].patchName() << nl + os << " Parcel fate: patch " << patchData_[i].patchName() + << " (number, mass)" << nl << " - escape = " << npe[i] << ", " << mpe[i] << nl << " - stick = " << nps[i] -- GitLab