adjointOutletVelocityFvPatchVectorField.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011 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 
27 #include "volFields.H"
29 #include "surfaceFields.H"
30 #include "fvPatchFieldMapper.H"
31 
32 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
33 
36 (
37  const fvPatch& p,
38  const DimensionedField<vector, volMesh>& iF
39 )
40 :
41  fixedValueFvPatchVectorField(p, iF)
42 {}
43 
44 
47 (
48  const fvPatch& p,
49  const DimensionedField<vector, volMesh>& iF,
50  const dictionary& dict
51 )
52 :
53  fixedValueFvPatchVectorField(p, iF)
54 {
56 }
57 
58 
61 (
62  const adjointOutletVelocityFvPatchVectorField& ptf,
63  const fvPatch& p,
64  const DimensionedField<vector, volMesh>& iF,
65  const fvPatchFieldMapper& mapper
66 )
67 :
68  fixedValueFvPatchVectorField(ptf, p, iF, mapper)
69 {}
70 
71 
74 (
75  const adjointOutletVelocityFvPatchVectorField& pivpvf,
76  const DimensionedField<vector, volMesh>& iF
77 )
78 :
79  fixedValueFvPatchVectorField(pivpvf, iF)
80 {}
81 
82 
83 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
84 
85 // Update the coefficients associated with the patch field
87 {
88  if (updated())
89  {
90  return;
91  }
92 
93  const fvsPatchField<scalar>& phiap =
94  patch().lookupPatchField<surfaceScalarField, scalar>("phia");
95 
96  const fvPatchField<vector>& Up =
97  patch().lookupPatchField<volVectorField, vector>("U");
98 
99  scalarField Un(mag(patch().nf() & Up));
100  vectorField UtHat((Up - patch().nf()*Un)/(Un + SMALL));
101 
102  vectorField Uan(patch().nf()*(patch().nf() & patchInternalField()));
103 
104  vectorField::operator=(phiap*patch().Sf()/sqr(patch().magSf()) + UtHat);
105  //vectorField::operator=(Uan + UtHat);
106 
107  fixedValueFvPatchVectorField::updateCoeffs();
108 }
109 
110 
112 {
114  writeEntry("value", os);
115 }
116 
117 
118 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
119 
120 namespace Foam
121 {
123  (
125  adjointOutletVelocityFvPatchVectorField
126  );
127 }
128 
129 
130 // ************************************************************************* //
volFields.H
Foam::fvPatchField::write
virtual void write(Ostream &) const
Write.
Definition: fvPatchField.C:349
Foam::fvPatchField::operator=
virtual void operator=(const UList< Type > &)
Foam::scalarField
Field< scalar > scalarField
Specialisation of Field<T> for scalar.
Definition: primitiveFieldsFwd.H:48
p
p
Definition: pEqn.H:62
Foam::adjointOutletVelocityFvPatchVectorField::write
virtual void write(Ostream &) const
Write.
surfaceFields.H
Foam::surfaceFields.
fvPatchFieldMapper.H
Foam::mag
dimensioned< scalar > mag(const dimensioned< Type > &)
adjointOutletVelocityFvPatchVectorField.H
Foam::vectorField
Field< vector > vectorField
Specialisation of Field<T> for vector.
Definition: primitiveFieldsFwd.H:49
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::adjointOutletVelocityFvPatchVectorField::updateCoeffs
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
addToRunTimeSelectionTable.H
Macros for easy insertion into run-time selection tables.
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::vector
Vector< scalar > vector
A scalar version of the templated Vector.
Definition: vector.H:49
Foam::makePatchTypeField
makePatchTypeField(fvPatchVectorField, SRFFreestreamVelocityFvPatchVectorField)
Foam::Field::operator=
void operator=(const Field< Type > &)
Foam::volVectorField
GeometricField< vector, fvPatchField, volMesh > volVectorField
Definition: volFieldsFwd.H:55
Foam::fvPatchVectorField
fvPatchField< vector > fvPatchVectorField
Definition: fvPatchFieldsFwd.H:41
Foam::sqr
dimensionedSymmTensor sqr(const dimensionedVector &dv)
Definition: dimensionedSymmTensor.C:49
Foam::surfaceScalarField
GeometricField< scalar, fvsPatchField, surfaceMesh > surfaceScalarField
Definition: surfaceFieldsFwd.H:52
Foam::adjointOutletVelocityFvPatchVectorField::adjointOutletVelocityFvPatchVectorField
adjointOutletVelocityFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &)
Construct from patch and internal field.