/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2012-2014 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 "GeometricField.H" #include "volMesh.H" #include "surfaceMesh.H" // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template Type Foam::fieldValues::fieldValueDelta::applyOperation ( const Type& value1, const Type& value2 ) const { Type result = pTraits::zero; switch (operation_) { case opAdd: { result = value1 + value2; break; } case opSubtract: { result = value1 - value2; break; } case opMin: { result = min(value1, value2); break; } case opMax: { result = max(value1, value2); break; } case opAverage: { result = 0.5*(value1 + value2); break; } default: { FatalErrorIn ( "Type Foam::fieldValues::fieldValueDelta::applyOperation" "(" "const Type&, " "const Type&" ") const" ) << "Unable to process operation " << operationTypeNames_[operation_] << abort(FatalError); } } return result; } template void Foam::fieldValues::fieldValueDelta::processFields(bool& found) { typedef GeometricField vf; typedef GeometricField sf; const wordList& fields1 = source1Ptr_->fields(); const dictionary& results1 = source1Ptr_->resultDict(); const dictionary& results2 = source2Ptr_->resultDict(); Type r1(pTraits::zero); Type r2(pTraits::zero); forAll(fields1, i) { const word& fieldName = fields1[i]; if ( (obr_.foundObject(fieldName) || obr_.foundObject(fieldName)) && results2.found(fieldName) ) { results1.lookup(fieldName) >> r1; results2.lookup(fieldName) >> r2; Type result = applyOperation(r1, r2); if (log_) Info<< " " << operationTypeNames_[operation_] << "(" << fieldName << ") = " << result << endl; if (Pstream::master()) { file()<< tab << result; } found = true; } } } // ************************************************************************* //