/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation ------------------------------------------------------------------------------- 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 . Class Foam::timeVaryingMappedFixedValueFvPatchField Group grpInletBoundaryConditions grpCoupledBoundaryConditions Description This boundary conditions interpolates the values from a set of supplied points in space and time. Supplied data should be specified in constant/boundaryData/\/ - points : pointField of locations - \/\ : field of values at time \ The default mode of operation (mapMethod = planar) is to project the points onto a plane (constructed from the first three points) and construct a 2D triangulation and finds for the face centres the triangle it is in and the weights to the 3 vertices. The optional mapMethod nearest will avoid all projection and triangulation and just use the value at the nearest vertex. Values are interpolated linearly between times. Usage \table Property | Description | Required | Default setAverage | Use average value | no | false perturb | Perturb points for regular geometries | no | 1e-5 points | Name of points file | no | points fieldTable | Alternative field name to sample | no | this field name mapMethod | Type of mapping | no | planar offset | Offset to mapped values | no | Zero \endtable \verbatim { type timeVaryingMappedFixedValue; } \endverbatim See also Foam::fixedValueFvPatchField Foam::Function1Types SourceFiles timeVaryingMappedFixedValueFvPatchField.C \*---------------------------------------------------------------------------*/ #ifndef Foam_timeVaryingMappedFixedValueFvPatchField_H #define Foam_timeVaryingMappedFixedValueFvPatchField_H #include "fixedValueFvPatchFields.H" #include "MappedFile.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class timeVaryingMappedFixedValueFvPatchField Declaration \*---------------------------------------------------------------------------*/ template class timeVaryingMappedFixedValueFvPatchField : public fixedValueFvPatchField { // Private Data autoPtr> uniformValue_; public: //- Runtime type information TypeName("timeVaryingMappedFixedValue"); // Constructors //- Construct from patch and internal field timeVaryingMappedFixedValueFvPatchField ( const fvPatch&, const DimensionedField& ); //- Construct from patch, internal field and dictionary timeVaryingMappedFixedValueFvPatchField ( const fvPatch&, const DimensionedField&, const dictionary& ); //- Construct by mapping given timeVaryingMappedFixedValueFvPatchField // onto a new patch timeVaryingMappedFixedValueFvPatchField ( const timeVaryingMappedFixedValueFvPatchField&, const fvPatch&, const DimensionedField&, const fvPatchFieldMapper& ); //- Construct as copy timeVaryingMappedFixedValueFvPatchField ( const timeVaryingMappedFixedValueFvPatchField& ); //- Construct as copy setting internal field reference timeVaryingMappedFixedValueFvPatchField ( const timeVaryingMappedFixedValueFvPatchField&, const DimensionedField& ); //- Return a clone virtual tmp> clone() const { return fvPatchField::Clone(*this); } //- Clone with an internal field reference virtual tmp> clone ( const DimensionedField& iF ) const { return fvPatchField::Clone(*this, iF); } // Member functions // Mapping functions //- Map (and resize as needed) from self given a mapping object virtual void autoMap ( const fvPatchFieldMapper& ); //- Reverse map the given fvPatchField onto this fvPatchField virtual void rmap ( const fvPatchField&, const labelList& ); // Evaluation functions //- Update the coefficients associated with the patch field virtual void updateCoeffs(); //- Write virtual void write(Ostream&) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository #include "timeVaryingMappedFixedValueFvPatchField.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //