initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / finiteVolume / fields / fvsPatchFields / basic / fixedValue / fixedValueFvsPatchField.H
blob8a56e1acb64e16dea4c2036ee12829fb3d1c54d4
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
11     OpenFOAM is free software; you can redistribute it and/or modify it
12     under the terms of the GNU General Public License as published by the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
16     OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
19     for more details.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 Class
26     Foam::fixedValueFvsPatchField
28 Description
29     Foam::fixedValueFvsPatchField
31 SourceFiles
32     fixedValueFvsPatchField.C
34 \*---------------------------------------------------------------------------*/
36 #ifndef fixedValueFvsPatchField_H
37 #define fixedValueFvsPatchField_H
39 #include "fvsPatchField.H"
41 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
43 namespace Foam
46 /*---------------------------------------------------------------------------*\
47                            Class fixedValueFvsPatch Declaration
48 \*---------------------------------------------------------------------------*/
50 template<class Type>
51 class fixedValueFvsPatchField
53     public fvsPatchField<Type>
56 public:
58     //- Runtime type information
59     TypeName("fixedValue");
62     // Constructors
64         //- Construct from patch and internal field
65         fixedValueFvsPatchField
66         (
67             const fvPatch&,
68             const DimensionedField<Type, surfaceMesh>&
69         );
71         //- Construct from patch, internal field and dictionary
72         fixedValueFvsPatchField
73         (
74             const fvPatch&,
75             const DimensionedField<Type, surfaceMesh>&,
76             const dictionary&
77         );
79         //- Construct by mapping the given fixedValueFvsPatchField<Type>
80         //  onto a new patch
81         fixedValueFvsPatchField
82         (
83             const fixedValueFvsPatchField<Type>&,
84             const fvPatch&,
85             const DimensionedField<Type, surfaceMesh>&,
86             const fvPatchFieldMapper&
87         );
89         //- Construct as copy
90         fixedValueFvsPatchField
91         (
92             const fixedValueFvsPatchField<Type>&
93         );
95         //- Construct and return a clone
96         virtual tmp<fvsPatchField<Type> > clone() const
97         {
98             return tmp<fvsPatchField<Type> >
99             (
100                 new fixedValueFvsPatchField<Type>(*this)
101             );
102         }
104         //- Construct as copy setting internal field reference
105         fixedValueFvsPatchField
106         (
107             const fixedValueFvsPatchField<Type>&,
108             const DimensionedField<Type, surfaceMesh>&
109         );
111         //- Construct and return a clone setting internal field reference
112         virtual tmp<fvsPatchField<Type> > clone
113         (
114             const DimensionedField<Type, surfaceMesh>& iF
115         ) const
116         {
117             return tmp<fvsPatchField<Type> >
118             (
119                 new fixedValueFvsPatchField<Type>(*this, iF)
120             );
121         }
124     // Member functions
126         // Access
128             //- Return true if this patch field fixes a value.
129             //  Needed to check if a level has to be specified while solving
130             //  Poissons equations.
131             virtual bool fixesValue() const
132             {
133                 return true;
134             }
137         // Evaluation functions
139             //- Return the matrix diagonal coefficients corresponding to the
140             //  evaluation of the value of this patchField with given weights
141             virtual tmp<Field<Type> > valueInternalCoeffs
142             (
143                 const tmp<scalarField>&
144             ) const;
146             //- Return the matrix source coefficients corresponding to the
147             //  evaluation of the value of this patchField with given weights
148             virtual tmp<Field<Type> > valueBoundaryCoeffs
149             (
150                 const tmp<scalarField>&
151             ) const;
153             //- Return the matrix diagonal coefficients corresponding to the
154             //  evaluation of the gradient of this patchField
155             virtual tmp<Field<Type> > gradientInternalCoeffs() const;
157             //- Return the matrix source coefficients corresponding to the
158             //  evaluation of the gradient of this patchField
159             virtual tmp<Field<Type> > gradientBoundaryCoeffs() const;
162         //- Write
163         virtual void write(Ostream&) const;
166     // Member operators
168         virtual void operator=(const UList<Type>&) {}
170         virtual void operator=(const fvsPatchField<Type>&) {}
171         virtual void operator+=(const fvsPatchField<Type>&) {}
172         virtual void operator-=(const fvsPatchField<Type>&) {}
173         virtual void operator*=(const fvsPatchField<scalar>&) {}
174         virtual void operator/=(const fvsPatchField<scalar>&) {}
176         virtual void operator+=(const Field<Type>&) {}
177         virtual void operator-=(const Field<Type>&) {}
179         virtual void operator*=(const Field<scalar>&) {}
180         virtual void operator/=(const Field<scalar>&) {}
182         virtual void operator=(const Type&) {}
183         virtual void operator+=(const Type&) {}
184         virtual void operator-=(const Type&) {}
185         virtual void operator*=(const scalar) {}
186         virtual void operator/=(const scalar) {}
190 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
192 } // End namespace Foam
194 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
196 #ifdef NoRepository
197 #   include "fixedValueFvsPatchField.C"
198 #endif
200 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
202 #endif
204 // ************************************************************************* //