/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation \\/ M anipulation | Copyright (C) 2016 OpenCFD Ltd. ------------------------------------------------------------------------------- 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 "fieldAverageItem.H" #include "IOstreams.H" #include "dictionaryEntry.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::functionObjects::fieldAverageItem::fieldAverageItem(Istream& is) : active_(false), fieldName_("unknown"), mean_(0), meanFieldName_("unknown"), prime2Mean_(0), prime2MeanFieldName_("unknown"), base_(ITER), window_(-1.0) { is.check(FUNCTION_NAME); const dictionaryEntry entry(dictionary::null, is); fieldName_ = entry.keyword(); mean_ = readBool(entry.lookup("mean")); prime2Mean_ = readBool(entry.lookup("prime2Mean")); base_ = baseTypeNames_[entry.lookup("base")]; window_ = entry.lookupOrDefault("window", -1.0); windowName_ = entry.lookupOrDefault("windowName", ""); meanFieldName_ = fieldName_ + EXT_MEAN; prime2MeanFieldName_ = fieldName_ + EXT_PRIME2MEAN; if ((window_ > 0) && (windowName_ != "")) { meanFieldName_ = meanFieldName_ + "_" + windowName_; prime2MeanFieldName_ = prime2MeanFieldName_ + "_" + windowName_; } } // * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * // Foam::Istream& Foam::functionObjects::operator>> ( Istream& is, fieldAverageItem& faItem ) { is.check(FUNCTION_NAME); const dictionaryEntry entry(dictionary::null, is); faItem.active_ = false; faItem.fieldName_ = entry.keyword(); faItem.mean_ = readBool(entry.lookup("mean")); faItem.prime2Mean_ = readBool(entry.lookup("prime2Mean")); faItem.base_ = faItem.baseTypeNames_[entry.lookup("base")]; faItem.window_ = entry.lookupOrDefault("window", -1.0); faItem.windowName_ = entry.lookupOrDefault("windowName", ""); faItem.meanFieldName_ = faItem.fieldName_ + fieldAverageItem::EXT_MEAN; faItem.prime2MeanFieldName_ = faItem.fieldName_ + fieldAverageItem::EXT_PRIME2MEAN; if ((faItem.window_ > 0) && (faItem.windowName_ != "")) { faItem.meanFieldName_ = faItem.meanFieldName_ + "_" + faItem.windowName_; faItem.prime2MeanFieldName_ = faItem.prime2MeanFieldName_ + "_" + faItem.windowName_; } return is; } Foam::Ostream& Foam::functionObjects::operator<< ( Ostream& os, const fieldAverageItem& faItem ) { os.check(FUNCTION_NAME); os << faItem.fieldName_ << nl << token::BEGIN_BLOCK << nl; os.writeKeyword("mean") << faItem.mean_ << token::END_STATEMENT << nl; os.writeKeyword("prime2Mean") << faItem.prime2Mean_ << token::END_STATEMENT << nl; os.writeKeyword("base") << faItem.baseTypeNames_[faItem.base_] << token::END_STATEMENT << nl; if (faItem.window_ > 0) { os.writeKeyword("window") << faItem.window_ << token::END_STATEMENT << nl; if (faItem.windowName_ != "") { os.writeKeyword("windowName") << faItem.windowName_ << token::END_STATEMENT << nl; } } os << token::END_BLOCK << nl; os.check(FUNCTION_NAME); return os; } // ************************************************************************* //