filmPyrolysisVelocityCoupledFvPatchVectorField.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-2015 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 
28 #include "surfaceFields.H"
29 #include "pyrolysisModel.H"
30 #include "surfaceFilmModel.H"
31 
32 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
33 
36 (
37  const fvPatch& p,
39 )
40 :
41  fixedValueFvPatchVectorField(p, iF),
42  filmRegionName_("surfaceFilmProperties"),
43  pyrolysisRegionName_("pyrolysisProperties"),
44  phiName_("phi"),
45  rhoName_("rho")
46 {}
47 
48 
51 (
53  const fvPatch& p,
55  const fvPatchFieldMapper& mapper
56 )
57 :
58  fixedValueFvPatchVectorField(ptf, p, iF, mapper),
59  filmRegionName_(ptf.filmRegionName_),
60  pyrolysisRegionName_(ptf.pyrolysisRegionName_),
61  phiName_(ptf.phiName_),
62  rhoName_(ptf.rhoName_)
63 {}
64 
65 
68 (
69  const fvPatch& p,
71  const dictionary& dict
72 )
73 :
74  fixedValueFvPatchVectorField(p, iF),
75  filmRegionName_
76  (
77  dict.lookupOrDefault<word>("filmRegion", "surfaceFilmProperties")
78  ),
79  pyrolysisRegionName_
80  (
81  dict.lookupOrDefault<word>("pyrolysisRegion", "pyrolysisProperties")
82  ),
83  phiName_(dict.lookupOrDefault<word>("phi", "phi")),
84  rhoName_(dict.lookupOrDefault<word>("rho", "rho"))
85 {
86  fvPatchVectorField::operator=(vectorField("value", dict, p.size()));
87 }
88 
89 
92 (
94 )
95 :
96  fixedValueFvPatchVectorField(fpvpvf),
97  filmRegionName_(fpvpvf.filmRegionName_),
98  pyrolysisRegionName_(fpvpvf.pyrolysisRegionName_),
99  phiName_(fpvpvf.phiName_),
100  rhoName_(fpvpvf.rhoName_)
101 {}
102 
103 
106 (
109 )
110 :
111  fixedValueFvPatchVectorField(fpvpvf, iF),
112  filmRegionName_(fpvpvf.filmRegionName_),
113  pyrolysisRegionName_(fpvpvf.pyrolysisRegionName_),
114  phiName_(fpvpvf.phiName_),
115  rhoName_(fpvpvf.rhoName_)
116 {}
117 
118 
119 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
120 
122 {
123  if (updated())
124  {
125  return;
126  }
127 
130 
131  // Since we're inside initEvaluate/evaluate there might be processor
132  // comms underway. Change the tag we use.
133  int oldTag = UPstream::msgType();
134  UPstream::msgType() = oldTag+1;
135 
136  bool foundFilm = db().time().foundObject<filmModelType>(filmRegionName_);
137 
138  bool foundPyrolysis =
139  db().time().foundObject<pyrModelType>(pyrolysisRegionName_);
140 
141  if (!foundFilm || !foundPyrolysis)
142  {
143  // do nothing on construction - film model doesn't exist yet
144  return;
145  }
146 
147  vectorField& Up = *this;
148 
149  const label patchI = patch().index();
150 
151  // Retrieve film model
152  const filmModelType& filmModel =
153  db().time().lookupObject<filmModelType>(filmRegionName_);
154 
155  const label filmPatchI = filmModel.regionPatchID(patchI);
156 
157  scalarField alphaFilm = filmModel.alpha().boundaryField()[filmPatchI];
158  filmModel.toPrimary(filmPatchI, alphaFilm);
159 
160  vectorField UFilm = filmModel.Us().boundaryField()[filmPatchI];
161  filmModel.toPrimary(filmPatchI, UFilm);
162 
163  // Retrieve pyrolysis model
164  const pyrModelType& pyrModel =
165  db().time().lookupObject<pyrModelType>(pyrolysisRegionName_);
166 
167  const label pyrPatchI = pyrModel.regionPatchID(patchI);
168 
169  scalarField phiPyr = pyrModel.phiGas().boundaryField()[pyrPatchI];
170  pyrModel.toPrimary(pyrPatchI, phiPyr);
171 
172 
173  const surfaceScalarField& phi =
174  db().lookupObject<surfaceScalarField>(phiName_);
175 
176  if (phi.dimensions() == dimVelocity*dimArea)
177  {
178  // do nothing
179  }
180  else if (phi.dimensions() == dimDensity*dimVelocity*dimArea)
181  {
182  const fvPatchField<scalar>& rhop =
183  patch().lookupPatchField<volScalarField, scalar>(rhoName_);
184  phiPyr /= rhop;
185  }
186  else
187  {
189  << "Unable to process flux field phi with dimensions "
190  << phi.dimensions() << nl
191  << " on patch " << patch().name()
192  << " of field " << dimensionedInternalField().name()
193  << " in file " << dimensionedInternalField().objectPath()
194  << exit(FatalError);
195  }
196 
197  const scalarField UAvePyr(-phiPyr/patch().magSf());
198  const vectorField& nf = patch().nf();
199 
200 
201  // Evaluate velocity
202  Up = alphaFilm*UFilm + (1.0 - alphaFilm)*UAvePyr*nf;
203 
204  // Restore tag
205  UPstream::msgType() = oldTag;
206 
207  fixedValueFvPatchVectorField::updateCoeffs();
208 }
209 
210 
212 (
213  Ostream& os
214 ) const
215 {
217  writeEntryIfDifferent<word>
218  (
219  os,
220  "filmRegion",
221  "surfaceFilmProperties",
222  filmRegionName_
223  );
224  writeEntryIfDifferent<word>
225  (
226  os,
227  "pyrolysisRegion",
228  "pyrolysisProperties",
229  pyrolysisRegionName_
230  );
231  writeEntryIfDifferent<word>(os, "phi", "phi", phiName_);
232  writeEntryIfDifferent<word>(os, "rho", "rho", rhoName_);
233  writeEntry("value", os);
234 }
235 
236 
237 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
238 
239 namespace Foam
240 {
242  (
245  );
246 }
247 
248 
249 // ************************************************************************* //
Foam::regionModels::pyrolysisModels::pyrolysisModel
Base class for pyrolysis models.
Definition: pyrolysisModel.H:60
Foam::fvPatchField< scalar >
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::write
virtual void write(Ostream &) const
Write.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.C:212
Foam::fvPatchField::write
virtual void write(Ostream &) const
Write.
Definition: fvPatchField.C:349
p
p
Definition: pEqn.H:62
Foam::word
A class for handling words, derived from string.
Definition: word.H:59
Foam::dimVelocity
const dimensionSet dimVelocity
Foam::dimDensity
const dimensionSet dimDensity
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::pyrolysisRegionName_
word pyrolysisRegionName_
Name of pyrolysis region.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:76
phi
surfaceScalarField & phi
Definition: setRegionFluidFields.H:8
dimensionedInternalField
rDeltaT dimensionedInternalField()
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField
This boundary condition is designed to be used in conjunction with surface film and pyrolysis modelli...
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:66
surfaceFields.H
Foam::surfaceFields.
pyrolysisModel.H
Foam::dimArea
const dimensionSet dimArea(sqr(dimLength))
Definition: dimensionSets.H:57
Foam::label
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::filmPyrolysisVelocityCoupledFvPatchVectorField
filmPyrolysisVelocityCoupledFvPatchVectorField(const fvPatch &, const DimensionedField< vector, volMesh > &)
Construct from patch and internal field.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.C:36
Foam::Field
Pre-declare SubField and related Field type.
Definition: Field.H:57
Foam::nl
static const char nl
Definition: Ostream.H:260
Foam::fvPatch
A finiteVolume patch using a polyPatch and a fvBoundaryMesh.
Definition: fvPatch.H:61
vectorField
volVectorField vectorField(fieldObject, mesh)
surfaceFilmModel.H
Foam::volScalarField
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:52
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::FatalError
error FatalError
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:137
addToRunTimeSelectionTable.H
Macros for easy insertion into run-time selection tables.
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::makePatchTypeField
makePatchTypeField(fvPatchVectorField, SRFFreestreamVelocityFvPatchVectorField)
Foam::exit
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:124
filmPyrolysisVelocityCoupledFvPatchVectorField.H
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::rhoName_
word rhoName_
Name of density field.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:82
Foam::UPstream::msgType
static int & msgType()
Message tag of standard messages.
Definition: UPstream.H:452
FatalErrorInFunction
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:318
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::filmRegionName_
word filmRegionName_
Name of film region.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:73
Foam::fvPatchFieldMapper
Foam::fvPatchFieldMapper.
Definition: fvPatchFieldMapper.H:45
Foam::regionModels::surfaceFilmModels::surfaceFilmModel
Base class for surface film models.
Definition: surfaceFilmModel.H:61
Foam::Ostream
An Ostream is an abstract base class for all output systems (streams, files, token lists,...
Definition: Ostream.H:53
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::updateCoeffs
virtual void updateCoeffs()
Update the coefficients associated with the patch field.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.C:121
Foam::GeometricField
Generic GeometricField class.
Definition: surfaceFieldsFwd.H:52
Foam::filmPyrolysisVelocityCoupledFvPatchVectorField::phiName_
word phiName_
Name of flux field.
Definition: filmPyrolysisVelocityCoupledFvPatchVectorField.H:79
Foam::DimensionedField
Field with dimensions and associated with geometry type GeoMesh which is used to size the field and a...
Definition: DimensionedField.H:51