Function2Evaluate.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2020 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
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
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
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.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 \*---------------------------------------------------------------------------*/
25 
26 #include "Function2Evaluate.H"
27 
28 // * * * * * * * * * * * * * * Global Functions * * * * * * * * * * * * * * //
29 
30 template<class Type, template<class> class PatchField, class GeoMesh>
32 (
34  const Function2<Type>& func,
37 )
38 {
39  result.primitiveFieldRef() = func.value(x(), y());
40 
42  result.boundaryFieldRef();
43 
45  x.boundaryField();
46 
48  y.boundaryField();
49 
50  forAll(bresult, patchi)
51  {
52  bresult[patchi] = func.value(bx[patchi], by[patchi]);
53  }
54 }
55 
56 
57 template<class Type, template<class> class PatchField, class GeoMesh>
59 (
60  const Function2<Type>& func,
61  const dimensionSet& dims,
62  const GeometricField<Type, PatchField, GeoMesh>& x,
63  const GeometricField<Type, PatchField, GeoMesh>& y
64 )
65 {
66  tmp<GeometricField<Type, PatchField, GeoMesh>> tresult
67  (
69  (
70  func.name() + '(' + x.name() + ',' + y.name() + ')',
71  x.mesh(),
72  dims
73  )
74  );
75 
76  evaluate(tresult.ref(), func, x, y);
77 
78  return tresult;
79 }
80 
81 
82 // ************************************************************************* //
scalar y
#define forAll(list, i)
Loop across all elements in list.
Definition: UList.H:434
Run-time selectable function of two variables.
Definition: Function2.H:64
Generic GeometricBoundaryField class.
Generic GeometricField class.
Internal::FieldType & primitiveFieldRef()
Return a reference to the internal field.
Boundary & boundaryFieldRef()
Return a reference to the boundary field.
A class for managing temporary objects.
Definition: tmp.H:55
label patchi
autoPtr< CompressibleMomentumTransportModel > New(const volScalarField &rho, const volVectorField &U, const surfaceScalarField &phi, const viscosity &viscosity)
void func(FieldField< Field, Type > &f, const FieldField< Field, Type > &f1, const FieldField< Field, Type > &f2)
void evaluate(GeometricField< Type, PatchField, GeoMesh > &result, const Function1< Type > &func, const GeometricField< Type, PatchField, GeoMesh > &x)