/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2015 OpenFOAM Foundation \\/ M anipulation | Copyright (C) 2015 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 "fieldMinMax.H" #include "fieldTypes.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // namespace Foam { defineTypeNameAndDebug(fieldMinMax, 0); template<> const char* NamedEnum < fieldMinMax::modeType, 2 >::names[] = { "magnitude", "component" }; } const Foam::NamedEnum Foam::fieldMinMax::modeTypeNames_; // * * * * * * * * * * * * * Protected Member Functions * * * * * * * * * * // void Foam::fieldMinMax::writeFileHeader(Ostream& os) const { writeHeader(os, "Field minima and maxima"); writeCommented(os, "Time"); if (writeLocation_) { writeTabbed(os, "field"); writeTabbed(os, "min"); writeTabbed(os, "position(min)"); if (Pstream::parRun()) { writeTabbed(os, "processor"); } writeTabbed(os, "max"); writeTabbed(os, "position(max)"); if (Pstream::parRun()) { writeTabbed(os, "processor"); } } else { forAll(fieldSet_, fieldI) { writeTabbed(os, "min(" + fieldSet_[fieldI] + ')'); writeTabbed(os, "max(" + fieldSet_[fieldI] + ')'); } } os << endl; } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::fieldMinMax::fieldMinMax ( const word& name, const objectRegistry& obr, const dictionary& dict, const bool loadFromFiles ) : functionObjectState(obr, name), functionObjectFile(obr, name, typeName, dict), obr_(obr), log_(true), writeLocation_(true), mode_(mdMag), fieldSet_() { // Check if the available mesh is an fvMesh otherise deactivate if (setActive()) { read(dict); writeFileHeader(file()); } } // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // Foam::fieldMinMax::~fieldMinMax() {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::fieldMinMax::read(const dictionary& dict) { if (active_) { functionObjectFile::read(dict); log_ = dict.lookupOrDefault("log", true); writeLocation_ = dict.lookupOrDefault("writeLocation", true); mode_ = modeTypeNames_[dict.lookupOrDefault("mode", "magnitude")]; dict.lookup("fields") >> fieldSet_; } } void Foam::fieldMinMax::execute() { // Do nothing - only valid on write } void Foam::fieldMinMax::end() { // Do nothing - only valid on write } void Foam::fieldMinMax::timeSet() { // Do nothing - only valid on write } void Foam::fieldMinMax::write() { if (active_) { if (!writeLocation_) file()<< obr_.time().value(); if (log_) Info<< type() << " " << name_ << " output:" << nl; forAll(fieldSet_, fieldI) { calcMinMaxFields(fieldSet_[fieldI], mdCmpt); calcMinMaxFields(fieldSet_[fieldI], mode_); calcMinMaxFields(fieldSet_[fieldI], mode_); calcMinMaxFields(fieldSet_[fieldI], mode_); calcMinMaxFields(fieldSet_[fieldI], mode_); } if (!writeLocation_) file()<< endl; if (log_) Info<< endl; } } // ************************************************************************* //