/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-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 "fixedValueFvPatchField.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template fixedValueFvPatchField::fixedValueFvPatchField ( const fvPatch& p, const DimensionedField& iF ) : fvPatchField(p, iF) {} template fixedValueFvPatchField::fixedValueFvPatchField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : fvPatchField(p, iF, dict, true) {} template fixedValueFvPatchField::fixedValueFvPatchField ( const fixedValueFvPatchField& ptf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : fvPatchField(ptf, p, iF, mapper) { if (notNull(iF) && mapper.hasUnmapped()) { WarningIn ( "fixedValueFvPatchField::fixedValueFvPatchField\n" "(\n" " const fixedValueFvPatchField&,\n" " const fvPatch&,\n" " const DimensionedField&,\n" " const fvPatchFieldMapper&\n" ")\n" ) << "On field " << iF.name() << " patch " << p.name() << " patchField " << this->type() << " : mapper does not map all values." << nl << " To avoid this warning fully specify the mapping in derived" << " patch fields." << endl; } } template fixedValueFvPatchField::fixedValueFvPatchField ( const fixedValueFvPatchField& ptf ) : fvPatchField(ptf) {} template fixedValueFvPatchField::fixedValueFvPatchField ( const fixedValueFvPatchField& ptf, const DimensionedField& iF ) : fvPatchField(ptf, iF) {} // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template tmp > fixedValueFvPatchField::valueInternalCoeffs ( const tmp& ) const { return tmp > ( new Field(this->size(), pTraits::zero) ); } template tmp > fixedValueFvPatchField::valueBoundaryCoeffs ( const tmp& ) const { return *this; } template tmp > fixedValueFvPatchField::gradientInternalCoeffs() const { return -pTraits::one*this->patch().deltaCoeffs(); } template tmp > fixedValueFvPatchField::gradientBoundaryCoeffs() const { return this->patch().deltaCoeffs()*(*this); } template void fixedValueFvPatchField::write(Ostream& os) const { fvPatchField::write(os); this->writeEntry("value", os); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // ************************************************************************* //