/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2013-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 "calcFvcGrad.H" #include "volFields.H" #include "dictionary.H" #include "calcFvcGrad.H" // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // namespace Foam { defineTypeNameAndDebug(calcFvcGrad, 0); } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // Foam::calcFvcGrad::calcFvcGrad ( const word& name, const objectRegistry& obr, const dictionary& dict, const bool loadFromFiles ) : name_(name), obr_(obr), active_(true), fieldName_("undefined-fieldName"), resultName_("undefined-resultName") { // Check if the available mesh is an fvMesh, otherwise deactivate if (!isA(obr_)) { active_ = false; WarningIn ( "calcFvcGrad::calcFvcGrad" "(" "const word&, " "const objectRegistry&, " "const dictionary&, " "const bool" ")" ) << "No fvMesh available, deactivating." << nl << endl; } read(dict); } // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // Foam::calcFvcGrad::~calcFvcGrad() {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // void Foam::calcFvcGrad::read(const dictionary& dict) { if (active_) { dict.lookup("fieldName") >> fieldName_; dict.lookup("resultName") >> resultName_; if (resultName_ == "none") { resultName_ = "fvc::grad(" + fieldName_ + ")"; } } } void Foam::calcFvcGrad::execute() { if (active_) { bool processed = false; calcGrad(fieldName_, resultName_, processed); calcGrad(fieldName_, resultName_, processed); if (!processed) { WarningIn("void Foam::calcFvcGrad::write()") << "Unprocessed field " << fieldName_ << endl; } } } void Foam::calcFvcGrad::end() { if (active_) { execute(); } } void Foam::calcFvcGrad::timeSet() { // Do nothing } void Foam::calcFvcGrad::write() { if (active_) { if (obr_.foundObject(resultName_)) { const regIOobject& field = obr_.lookupObject(resultName_); Info<< type() << " " << name_ << " output:" << nl << " writing field " << field.name() << nl << endl; field.write(); } } } // ************************************************************************* //