/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-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 "faceSource.H" #include "surfaceFields.H" #include "volFields.H" #include "sampledSurface.H" #include "interpolationCellPoint.H" // * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * * // template bool Foam::fieldValues::faceSource::validField(const word& fieldName) const { typedef GeometricField sf; typedef GeometricField vf; if (source_ != stSampledSurface && obr_.foundObject(fieldName)) { return true; } else if (obr_.foundObject(fieldName)) { return true; } return false; } template Foam::tmp > Foam::fieldValues::faceSource::getFieldValues ( const word& fieldName, const bool mustGet, const bool applyOrientation ) const { typedef GeometricField sf; typedef GeometricField vf; if (source_ != stSampledSurface && obr_.foundObject(fieldName)) { return filterField(obr_.lookupObject(fieldName), applyOrientation); } else if (obr_.foundObject(fieldName)) { const vf& fld = obr_.lookupObject(fieldName); if (surfacePtr_.valid()) { if (surfacePtr_().interpolate()) { const interpolationCellPoint interp(fld); tmp > tintFld(surfacePtr_().interpolate(interp)); const Field& intFld = tintFld(); // Average const faceList& faces = surfacePtr_().faces(); tmp > tavg ( new Field(faces.size(), pTraits::zero) ); Field& avg = tavg(); forAll(faces, faceI) { const face& f = faces[faceI]; forAll(f, fp) { avg[faceI] += intFld[f[fp]]; } avg[faceI] /= f.size(); } return tavg; } else { return surfacePtr_().sample(fld); } } else { return filterField(fld, applyOrientation); } } if (mustGet) { FatalErrorIn ( "Foam::tmp > " "Foam::fieldValues::faceSource::getFieldValues" "(" "const word&, " "const bool, " "const bool" ") const" ) << "Field " << fieldName << " not found in database" << abort(FatalError); } return tmp >(new Field(0)); } template Type Foam::fieldValues::faceSource::processSameTypeValues ( const Field& values, const vectorField& Sf, const scalarField& weightField ) const { Type result = pTraits::zero; switch (operation_) { case opSum: { result = sum(values); break; } case opSumMag: { result = sum(cmptMag(values)); break; } case opSumDirection: { FatalErrorIn ( "template" "Type Foam::fieldValues::faceSource::processSameTypeValues" "(" "const Field&, " "const vectorField&, " "const scalarField&" ") const" ) << "Operation " << operationTypeNames_[operation_] << " not available for values of type " << pTraits::typeName << exit(FatalError); result = pTraits::zero; break; } case opSumDirectionBalance: { FatalErrorIn ( "template" "Type Foam::fieldValues::faceSource::processSameTypeValues" "(" "const Field&, " "const vectorField&, " "const scalarField&" ") const" ) << "Operation " << operationTypeNames_[operation_] << " not available for values of type " << pTraits::typeName << exit(FatalError); result = pTraits::zero; break; } case opAverage: { result = sum(values)/values.size(); break; } case opWeightedAverage: { result = sum(values)/sum(weightField); break; } case opAreaAverage: { const scalarField magSf(mag(Sf)); result = sum(values*magSf)/sum(magSf); break; } case opAreaIntegrate: { const scalarField magSf(mag(Sf)); result = sum(values*magSf); break; } case opMin: { result = min(values); break; } case opMax: { result = max(values); break; } case opCoV: { const scalarField magSf(mag(Sf)); Type meanValue = sum(values*magSf)/sum(magSf); const label nComp = pTraits::nComponents; for (direction d=0; d Type Foam::fieldValues::faceSource::processValues ( const Field& values, const vectorField& Sf, const scalarField& weightField ) const { return processSameTypeValues(values, Sf, weightField); } // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template bool Foam::fieldValues::faceSource::writeValues ( const word& fieldName, const scalarField& weightField, const bool orient ) { const bool ok = validField(fieldName); if (ok) { Field values(getFieldValues(fieldName, true, orient)); vectorField Sf; if (surfacePtr_.valid()) { // Get oriented Sf Sf = surfacePtr_().Sf(); } else { // Get oriented Sf Sf = filterField(mesh().Sf(), true); } // Combine onto master combineFields(values); combineFields(Sf); // Write raw values on surface if specified if (surfaceWriterPtr_.valid()) { faceList faces; pointField points; if (surfacePtr_.valid()) { combineSurfaceGeometry(faces, points); } else { combineMeshGeometry(faces, points); } if (Pstream::master()) { fileName outputDir = baseFileDir()/name_/"surface"/obr_.time().timeName(); surfaceWriterPtr_->write ( outputDir, word(sourceTypeNames_[source_]) + "_" + sourceName_, points, faces, fieldName, values, false ); } } // apply scale factor and weight field values *= scaleFactor_*weightField; if (Pstream::master()) { Type result = processValues(values, Sf, weightField); // add to result dictionary, over-writing any previous entry resultDict_.add(fieldName, result, true); file()<< tab << result; Info(log_)<< " " << operationTypeNames_[operation_] << "(" << sourceName_ << ") for " << fieldName << " = " << result << endl; } } return ok; } template Foam::tmp > Foam::fieldValues::faceSource::filterField ( const GeometricField& field, const bool applyOrientation ) const { tmp > tvalues(new Field(faceId_.size())); Field& values = tvalues(); forAll(values, i) { label faceI = faceId_[i]; label patchI = facePatchId_[i]; if (patchI >= 0) { values[i] = field.boundaryField()[patchI][faceI]; } else { FatalErrorIn ( "fieldValues::faceSource::filterField" "(" "const GeometricField&, " "const bool" ") const" ) << type() << " " << name_ << ": " << sourceTypeNames_[source_] << "(" << sourceName_ << "):" << nl << " Unable to process internal faces for volume field " << field.name() << nl << abort(FatalError); } } if (applyOrientation) { forAll(values, i) { values[i] *= faceSign_[i]; } } return tvalues; } template Foam::tmp > Foam::fieldValues::faceSource::filterField ( const GeometricField& field, const bool applyOrientation ) const { tmp > tvalues(new Field(faceId_.size())); Field& values = tvalues(); forAll(values, i) { label faceI = faceId_[i]; label patchI = facePatchId_[i]; if (patchI >= 0) { values[i] = field.boundaryField()[patchI][faceI]; } else { values[i] = field[faceI]; } } if (applyOrientation) { forAll(values, i) { values[i] *= faceSign_[i]; } } return tvalues; } // ************************************************************************* //