liftModel.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) 2014-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 
26 #include "liftModel.H"
27 #include "phasePair.H"
28 #include "fvcCurl.H"
29 #include "surfaceInterpolate.H"
30 
31 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
32 
33 namespace Foam
34 {
35  defineTypeNameAndDebug(liftModel, 0);
36  defineRunTimeSelectionTable(liftModel, dictionary);
37 }
38 
39 const Foam::dimensionSet Foam::liftModel::dimF(1, -2, -2, 0, 0);
40 
41 
42 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
43 
45 (
46  const dictionary& dict,
47  const phasePair& pair
48 )
49 :
50  pair_(pair)
51 {}
52 
53 
54 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
55 
57 {}
58 
59 
60 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
61 
63 {
64  return
65  Cl()
66  *pair_.continuous().rho()
67  *(
68  pair_.Ur() ^ fvc::curl(pair_.continuous().U())
69  );
70 }
71 
72 
74 {
75  return pair_.dispersed()*Fi();
76 }
77 
78 
80 {
81  const fvMesh& mesh(this->pair_.phase1().mesh());
82 
83  return
84  fvc::interpolate(pair_.dispersed())
85  *(fvc::interpolate(Fi()) & mesh.Sf());
86 }
87 
88 
89 // ************************************************************************* //
Foam::liftModel::Ff
virtual tmp< surfaceScalarField > Ff() const
Return face lift force.
Foam::liftModel::Fi
virtual tmp< volVectorField > Fi() const
Return phase-intensive lift force.
Foam::fvc::curl
tmp< GeometricField< Type, fvPatchField, volMesh > > curl(const GeometricField< Type, fvPatchField, volMesh > &vf)
Definition: fvcCurl.C:45
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:118
Foam::defineRunTimeSelectionTable
defineRunTimeSelectionTable(reactionRateFlameArea, dictionary)
Foam::fvc::interpolate
tmp< GeometricField< Type, fvsPatchField, surfaceMesh > > interpolate(const GeometricField< Type, fvPatchField, volMesh > &vf, const surfaceScalarField &faceFlux, Istream &schemeData)
Interpolate field onto faces using scheme given by Istream.
Definition: surfaceInterpolate.C:110
Foam::liftModel::dimF
static const dimensionSet dimF
Force dimensions.
Definition: liftModel.H:86
Foam::dimensionSet
Dimension set for the base types.
Definition: dimensionSet.H:116
fvcCurl.H
Calculate the curl of the given volField by constructing the Hodge-dual of the symmetric part of the ...
Foam::liftModel::F
virtual tmp< volVectorField > F() const
Return lift force.
Foam::liftModel::liftModel
liftModel(const dictionary &dict, const phasePair &pair)
Construct from a dictionary and a phase pair.
dict
dictionary dict
Definition: searchingEngine.H:14
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
surfaceInterpolate.H
Surface Interpolation.
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::liftModel::~liftModel
virtual ~liftModel()
Destructor.
Foam::defineTypeNameAndDebug
defineTypeNameAndDebug(combustionModel, 0)