/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Copyright (C) 2012-2019 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 "codedFixedValuePointPatchField.H" #include "addToRunTimeSelectionTable.H" #include "pointPatchFieldMapper.H" #include "pointFields.H" #include "dynamicCode.H" #include "dynamicCodeContext.H" #include "stringOps.H" // * * * * * * * * * * * * Private Static Data Members * * * * * * * * * * * // template const Foam::wordList Foam::codedFixedValuePointPatchField::codeKeys_ = {"code", "codeInclude", "localCode"}; // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * // template const Foam::word Foam::codedFixedValuePointPatchField::codeTemplateC = "fixedValuePointPatchFieldTemplate.C"; template const Foam::word Foam::codedFixedValuePointPatchField::codeTemplateH = "fixedValuePointPatchFieldTemplate.H"; // * * * * * * * * * * * * * Static Member Functions * * * * * * * * * * * * // template void Foam::codedFixedValuePointPatchField::setFieldTemplates ( dynamicCode& dynCode ) { word fieldType(pTraits::typeName); // Template type for pointPatchField dynCode.setFilterVariable("TemplateType", fieldType); // Name for pointPatchField - eg, ScalarField, VectorField, ... fieldType[0] = toupper(fieldType[0]); dynCode.setFilterVariable("FieldType", fieldType + "Field"); } // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // template const Foam::IOdictionary& Foam::codedFixedValuePointPatchField::dict() const { const objectRegistry& obr = this->db(); if (obr.foundObject("codeDict")) { return obr.lookupObject("codeDict"); } else { return obr.store ( new IOdictionary ( IOobject ( "codeDict", this->db().time().system(), this->db(), IOobject::MUST_READ_IF_MODIFIED, IOobject::NO_WRITE ) ) ); } } template Foam::dlLibraryTable& Foam::codedFixedValuePointPatchField::libs() const { return const_cast(this->db().time().libs()); } template void Foam::codedFixedValuePointPatchField::prepare ( dynamicCode& dynCode, const dynamicCodeContext& context ) const { // Take no chances - typeName must be identical to name_ dynCode.setFilterVariable("typeName", name_); // Set TemplateType and FieldType filter variables // (for pointPatchField) setFieldTemplates(dynCode); // Compile filtered C template dynCode.addCompileFile(codeTemplateC); // Copy filtered H template dynCode.addCopyFile(codeTemplateH); // Debugging: make BC verbose // dynCode.setFilterVariable("verbose", "true"); // Info<<"compile " << name_ << " sha1: " // << context.sha1() << endl; // Define Make/options dynCode.setMakeOptions ( "EXE_INC = -g \\\n" "-I$(LIB_SRC)/finiteVolume/lnInclude \\\n" + context.options() + "\n\nLIB_LIBS = \\\n" + " -lOpenFOAM \\\n" + " -lfiniteVolume \\\n" + context.libs() ); } template const Foam::dictionary& Foam::codedFixedValuePointPatchField::codeDict() const { // Use system/codeDict or in-line return ( dict_.found("code") ? dict_ : this->dict().subDict(name_) ); } template const Foam::wordList& Foam::codedFixedValuePointPatchField::codeKeys() const { return codeKeys_; } template Foam::string Foam::codedFixedValuePointPatchField::description() const { return "patch " + this->patch().name() + " on field " + this->internalField().name(); } template void Foam::codedFixedValuePointPatchField::clearRedirect() const { // Remove instantiation of pointPatchField provided by library redirectPatchFieldPtr_.clear(); } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template Foam::codedFixedValuePointPatchField::codedFixedValuePointPatchField ( const pointPatch& p, const DimensionedField& iF ) : fixedValuePointPatchField(p, iF), codedBase(), redirectPatchFieldPtr_() {} template Foam::codedFixedValuePointPatchField::codedFixedValuePointPatchField ( const codedFixedValuePointPatchField& ptf, const pointPatch& p, const DimensionedField& iF, const pointPatchFieldMapper& mapper ) : fixedValuePointPatchField(ptf, p, iF, mapper), codedBase(), dict_(ptf.dict_), name_(ptf.name_), redirectPatchFieldPtr_() {} template Foam::codedFixedValuePointPatchField::codedFixedValuePointPatchField ( const pointPatch& p, const DimensionedField& iF, const dictionary& dict ) : fixedValuePointPatchField(p, iF, dict), codedBase(), dict_(dict), name_ ( dict.found("redirectType") ? dict.lookup("redirectType") : dict.lookup("name") ), redirectPatchFieldPtr_() { updateLibrary(name_); } template Foam::codedFixedValuePointPatchField::codedFixedValuePointPatchField ( const codedFixedValuePointPatchField& ptf ) : fixedValuePointPatchField(ptf), codedBase(), dict_(ptf.dict_), name_(ptf.name_), redirectPatchFieldPtr_() {} template Foam::codedFixedValuePointPatchField::codedFixedValuePointPatchField ( const codedFixedValuePointPatchField& ptf, const DimensionedField& iF ) : fixedValuePointPatchField(ptf, iF), codedBase(), dict_(ptf.dict_), name_(ptf.name_), redirectPatchFieldPtr_() {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template const Foam::pointPatchField& Foam::codedFixedValuePointPatchField::redirectPatchField() const { if (!redirectPatchFieldPtr_.valid()) { // Construct a patch // Make sure to construct the patchfield with up-to-date value OStringStream os; writeEntry(os, "type", name_); writeEntry(os, "value", static_cast&>(*this)); IStringStream is(os.str()); dictionary dict(is); redirectPatchFieldPtr_.set ( pointPatchField::New ( this->patch(), this->internalField(), dict ).ptr() ); } return redirectPatchFieldPtr_(); } template void Foam::codedFixedValuePointPatchField::updateCoeffs() { if (this->updated()) { return; } // Make sure library containing user-defined pointPatchField is up-to-date updateLibrary(name_); const pointPatchField& fvp = redirectPatchField(); const_cast&>(fvp).updateCoeffs(); // Copy through value this->operator==(fvp); fixedValuePointPatchField::updateCoeffs(); } template void Foam::codedFixedValuePointPatchField::evaluate ( const Pstream::commsTypes commsType ) { // Make sure library containing user-defined pointPatchField is up-to-date updateLibrary(name_); const pointPatchField& fvp = redirectPatchField(); const_cast&>(fvp).evaluate(commsType); fixedValuePointPatchField::evaluate(commsType); } template void Foam::codedFixedValuePointPatchField::write(Ostream& os) const { fixedValuePointPatchField::write(os); writeEntry(os, "name", name_); if (dict_.found("codeInclude")) { os.writeKeyword("codeInclude") << token::HASH << token::BEGIN_BLOCK; os.writeQuoted(string(dict_["codeInclude"]), false) << token::HASH << token::END_BLOCK << token::END_STATEMENT << nl; } if (dict_.found("localCode")) { os.writeKeyword("localCode") << token::HASH << token::BEGIN_BLOCK; os.writeQuoted(string(dict_["localCode"]), false) << token::HASH << token::END_BLOCK << token::END_STATEMENT << nl; } if (dict_.found("code")) { os.writeKeyword("code") << token::HASH << token::BEGIN_BLOCK; os.writeQuoted(string(dict_["code"]), false) << token::HASH << token::END_BLOCK << token::END_STATEMENT << nl; } if (dict_.found("codeOptions")) { os.writeKeyword("codeOptions") << token::HASH << token::BEGIN_BLOCK; os.writeQuoted(string(dict_["codeOptions"]), false) << token::HASH << token::END_BLOCK << token::END_STATEMENT << nl; } if (dict_.found("codeLibs")) { os.writeKeyword("codeLibs") << token::HASH << token::BEGIN_BLOCK; os.writeQuoted(string(dict_["codeLibs"]), false) << token::HASH << token::END_BLOCK << token::END_STATEMENT << nl; } } // ************************************************************************* //