/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2004-2010 OpenCFD Ltd. \\/ 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 "calculatedFvsPatchField.H" #include "fvPatchFieldMapper.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { template const word& fvsPatchField::calculatedType() { return calculatedFvsPatchField::typeName; } // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template calculatedFvsPatchField::calculatedFvsPatchField ( const fvPatch& p, const DimensionedField& iF ) : fvsPatchField(p, iF) {} template calculatedFvsPatchField::calculatedFvsPatchField ( const calculatedFvsPatchField& ptf, const fvPatch& p, const DimensionedField& iF, const fvPatchFieldMapper& mapper ) : fvsPatchField(ptf, p, iF, mapper) {} template calculatedFvsPatchField::calculatedFvsPatchField ( const fvPatch& p, const DimensionedField& iF, const dictionary& dict ) : fvsPatchField(p, iF, Field("value", dict, p.size())) {} template calculatedFvsPatchField::calculatedFvsPatchField ( const calculatedFvsPatchField& ptf ) : fvsPatchField(ptf) {} template calculatedFvsPatchField::calculatedFvsPatchField ( const calculatedFvsPatchField& ptf, const DimensionedField& iF ) : fvsPatchField(ptf, iF) {} template template tmp > fvsPatchField::NewCalculatedType ( const fvsPatchField& pf ) { typename patchConstructorTable::iterator patchTypeCstrIter = patchConstructorTablePtr_->find(pf.patch().type()); if (patchTypeCstrIter != patchConstructorTablePtr_->end()) { return patchTypeCstrIter() ( pf.patch(), Field::null() ); } else { return tmp > ( new calculatedFvsPatchField ( pf.patch(), Field::null() ) ); } } // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // // Write template void calculatedFvsPatchField::write(Ostream& os) const { fvsPatchField::write(os); this->writeEntry("value", os); } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // ************************************************************************* //