/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation Copyright (C) 2016-2023 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 "codedFixedValueFvPatchField.H" #include "addToRunTimeSelectionTable.H" #include "fvPatchFieldMapper.H" #include "volFields.H" #include "dynamicCode.H" #include "dictionaryContent.H" // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * // template Foam::dlLibraryTable& Foam::codedFixedValueFvPatchField::libs() const { return this->db().time().libs(); } template Foam::string Foam::codedFixedValueFvPatchField::description() const { return "patch " + this->patch().name() + " on field " + this->internalField().name(); } template void Foam::codedFixedValueFvPatchField::clearRedirect() const { redirectPatchFieldPtr_.reset(nullptr); } template const Foam::dictionary& Foam::codedFixedValueFvPatchField::codeContext() const { const dictionary* ptr = dict_.findDict("codeContext", keyType::LITERAL); return (ptr ? *ptr : dictionary::null); } template const Foam::dictionary& Foam::codedFixedValueFvPatchField::codeDict() const { // Inline "code" or from system/codeDict return ( dict_.found("code") ? dict_ : codedBase::codeDict(this->db()).subDict(name_) ); } template void Foam::codedFixedValueFvPatchField::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 dynCode.setFieldTemplates(); // Compile filtered C template dynCode.addCompileFile(codeTemplateC); // Copy filtered H template dynCode.addCopyFile(codeTemplateH); #ifdef FULLDEBUG dynCode.setFilterVariable("verbose", "true"); DetailInfo <<"compile " << name_ << " sha1: " << context.sha1() << endl; #endif // Define Make/options dynCode.setMakeOptions ( "EXE_INC = -g \\\n" "-I$(LIB_SRC)/finiteVolume/lnInclude \\\n" "-I$(LIB_SRC)/meshTools/lnInclude \\\n" + context.options() + "\n\nLIB_LIBS = \\\n" " -lOpenFOAM \\\n" " -lfiniteVolume \\\n" " -lmeshTools \\\n" + context.libs() ); } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template Foam::codedFixedValueFvPatchField::codedFixedValueFvPatchField ( const fvPatch& p, const DimensionedField& iF ) : parent_bctype(p, iF), codedBase(), redirectPatchFieldPtr_(nullptr) {} template Foam::codedFixedValueFvPatchField::codedFixedValueFvPatchField ( const codedFixedValueFvPatchField& rhs, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : parent_bctype(rhs, p, iF, mapper), codedBase(), dict_(rhs.dict_), // Deep copy name_(rhs.name_), redirectPatchFieldPtr_(nullptr) {} template Foam::codedFixedValueFvPatchField::codedFixedValueFvPatchField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : // The 'value' is optional parent_bctype(p, iF, dict, IOobjectOption::NO_READ), codedBase(), dict_ ( // Copy dictionary without "heavy" data chunks dictionaryContent::copyDict ( dict, wordList(), // allow wordList // deny ({ "type", // redundant "value" }) ) ), name_(dict.getCompat("name", {{"redirectType", 1706}})), redirectPatchFieldPtr_(nullptr) { updateLibrary(name_); if (!this->readValueEntry(dict)) { // Ensure field has reasonable initial values this->extrapolateInternal(); // Evaluate to assign a value this->evaluate(Pstream::commsTypes::buffered); } } template Foam::codedFixedValueFvPatchField::codedFixedValueFvPatchField ( const codedFixedValueFvPatchField& rhs ) : parent_bctype(rhs), codedBase(), dict_(rhs.dict_), // Deep copy name_(rhs.name_), redirectPatchFieldPtr_(nullptr) {} template Foam::codedFixedValueFvPatchField::codedFixedValueFvPatchField ( const codedFixedValueFvPatchField& rhs, const DimensionedField& iF ) : parent_bctype(rhs, iF), codedBase(), dict_(rhs.dict_), // Deep copy name_(rhs.name_), redirectPatchFieldPtr_(nullptr) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template const Foam::fvPatchField& Foam::codedFixedValueFvPatchField::redirectPatchField() const { if (!redirectPatchFieldPtr_) { // Construct a patch // Make sure to construct the patchfield with up-to-date value OCharStream os; this->writeValueEntry(os); ISpanStream is(os.view()); dictionary constructDict(is); constructDict.set("type", name_); redirectPatchFieldPtr_.reset ( fvPatchField::New ( this->patch(), this->internalField(), constructDict ).ptr() ); // Forward copy of codeContext to the code template auto* contentPtr = dynamic_cast(redirectPatchFieldPtr_.get()); if (contentPtr) { contentPtr->dict(this->codeContext()); } else { WarningInFunction << name_ << " Did not derive from dictionaryContent" << nl << nl; } } return *redirectPatchFieldPtr_; } template void Foam::codedFixedValueFvPatchField::updateCoeffs() { if (this->updated()) { return; } // Make sure library containing user-defined fvPatchField is up-to-date updateLibrary(name_); const fvPatchField& fvp = redirectPatchField(); const_cast&>(fvp).updateCoeffs(); // Copy through value this->operator==(fvp); parent_bctype::updateCoeffs(); } template void Foam::codedFixedValueFvPatchField::evaluate ( const Pstream::commsTypes commsType ) { // Make sure library containing user-defined fvPatchField is up-to-date updateLibrary(name_); const fvPatchField& fvp = redirectPatchField(); const_cast&>(fvp).evaluate(commsType); parent_bctype::evaluate(commsType); } template void Foam::codedFixedValueFvPatchField::write(Ostream& os) const { this->parent_bctype::write(os); os.writeEntry("name", name_); codedBase::writeCodeDict(os, dict_); } // ************************************************************************* //