wallLubricationModel.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 "wallLubricationModel.H"
27 #include "phasePair.H"
28 #include "surfaceInterpolate.H"
29 
30 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 
32 namespace Foam
33 {
34  defineTypeNameAndDebug(wallLubricationModel, 0);
35  defineRunTimeSelectionTable(wallLubricationModel, dictionary);
36 }
37 
39 
40 
41 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
42 
44 (
45  const dictionary& dict,
46  const phasePair& pair
47 )
48 :
49  wallDependentModel(pair.phase1().mesh()),
50  pair_(pair)
51 {}
52 
53 
54 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
55 
57 {}
58 
59 
60 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
61 
63 {
64  return pair_.dispersed()*Fi();
65 }
66 
67 
69 {
70  const fvMesh& mesh(this->pair_.phase1().mesh());
71 
72  return
73  fvc::interpolate(pair_.dispersed())
74  *(fvc::interpolate(Fi()) & mesh.Sf());
75 }
76 
77 
78 // ************************************************************************* //
Foam::wallLubricationModel::~wallLubricationModel
virtual ~wallLubricationModel()
Destructor.
Foam::wallLubricationModel::wallLubricationModel
wallLubricationModel(const dictionary &dict, const phasePair &pair)
Construct from components.
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:118
Foam::wallLubricationModel::dimF
static const dimensionSet dimF
Coefficient dimensions.
Definition: wallLubricationModel.H:89
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::dimensionSet
Dimension set for the base types.
Definition: dimensionSet.H:116
Foam::wallLubricationModel::Ff
virtual tmp< surfaceScalarField > Ff() const
Return face wall lubrication force.
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::wallLubricationModel::F
virtual tmp< volVectorField > F() const
Return wall lubrication force.
Foam::defineTypeNameAndDebug
defineTypeNameAndDebug(combustionModel, 0)
phase1
phaseModel & phase1
Definition: createFields.H:12