/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Copyright (C) 2015-2019 OpenFOAM Foundation \\/ M anipulation | ------------------------------------------------------------------------------- License This file is part of OpenFOAM. OpenFOAM is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. OpenFOAM is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenFOAM. If not, see . \*---------------------------------------------------------------------------*/ #include "residuals.H" #include "volFields.H" #include "Residuals.H" #include "ListOps.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // template void Foam::functionObjects::residuals::writeFileHeader(const word& fieldName) { typedef GeometricField fieldType; if (obr_.foundObject(fieldName)) { typename pTraits::labelType validComponents ( mesh_.validComponents() ); for (direction cmpt=0; cmpt::nComponents; cmpt++) { if (component(validComponents, cmpt) != -1) { writeTabbed ( file(), fieldName + word(pTraits::componentNames[cmpt]) ); } } } } template void Foam::functionObjects::residuals::writeResidual(const word& fieldName) { typedef GeometricField fieldType; if (obr_.foundObject(fieldName)) { if (Residuals::found(mesh_, fieldName)) { const DynamicList>& sp ( Residuals::field(mesh_, fieldName) ); const Type& residual = sp.first().initialResidual(); typename pTraits::labelType validComponents ( mesh_.validComponents() ); for (direction cmpt=0; cmpt::nComponents; cmpt++) { if (component(validComponents, cmpt) != -1) { file() << tab << component(residual, cmpt); } } } else { file() << tab << "N/A"; } } } // ************************************************************************* //