velocityLaplacianFvMotionSolver.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 
27 #include "motionInterpolation.H"
28 #include "motionDiffusivity.H"
29 #include "fvmLaplacian.H"
31 
32 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
33 
34 namespace Foam
35 {
36  defineTypeNameAndDebug(velocityLaplacianFvMotionSolver, 0);
37 
39  (
40  motionSolver,
41  velocityLaplacianFvMotionSolver,
42  dictionary
43  );
44 }
45 
46 
47 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
48 
50 (
51  const polyMesh& mesh,
52  const IOdictionary& dict
53 )
54 :
55  velocityMotionSolver(mesh, dict, typeName),
57  cellMotionU_
58  (
59  IOobject
60  (
61  "cellMotionU",
62  mesh.time().timeName(),
63  mesh,
64  IOobject::READ_IF_PRESENT,
65  IOobject::AUTO_WRITE
66  ),
67  fvMesh_,
69  (
70  "cellMotionU",
71  pointMotionU_.dimensions(),
72  vector::zero
73  ),
74  cellMotionBoundaryTypes<vector>(pointMotionU_.boundaryField())
75  ),
76  interpolationPtr_
77  (
78  coeffDict().found("interpolation")
79  ? motionInterpolation::New(fvMesh_, coeffDict().lookup("interpolation"))
80  : motionInterpolation::New(fvMesh_)
81  ),
82  diffusivityPtr_
83  (
84  motionDiffusivity::New(fvMesh_, coeffDict().lookup("diffusivity"))
85  )
86 {}
87 
88 
89 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
90 
92 {}
93 
94 
95 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
96 
99 {
100  interpolationPtr_->interpolate
101  (
102  cellMotionU_,
103  pointMotionU_
104  );
105 
106  tmp<pointField> tcurPoints
107  (
108  fvMesh_.points()
109  + fvMesh_.time().deltaTValue()*pointMotionU_.internalField()
110  );
111 
112  twoDCorrectPoints(tcurPoints());
113 
114  return tcurPoints;
115 }
116 
117 
119 {
120  // The points have moved so before interpolation update
121  // the fvMotionSolver accordingly
122  movePoints(fvMesh_.points());
123 
124  diffusivityPtr_->correct();
125  pointMotionU_.boundaryField().updateCoeffs();
126 
128  (
130  (
131  diffusivityPtr_->operator()(),
132  cellMotionU_,
133  "laplacian(diffusivity,cellMotionU)"
134  )
135  );
136 }
137 
138 
140 (
141  const mapPolyMesh& mpm
142 )
143 {
145 
146  // Update diffusivity. Note two stage to make sure old one is de-registered
147  // before creating/registering new one.
148  diffusivityPtr_.reset(NULL);
149  diffusivityPtr_ = motionDiffusivity::New
150  (
151  fvMesh_,
152  coeffDict().lookup("diffusivity")
153  );
154 }
155 
156 
157 // ************************************************************************* //
Foam::IOdictionary
IOdictionary is derived from dictionary and IOobject to give the dictionary automatic IO functionalit...
Definition: IOdictionary.H:53
Foam::IOobject
IOobject defines the attributes of an object for which implicit objectRegistry management is supporte...
Definition: IOobject.H:91
Foam::compressible::New
autoPtr< BasicCompressibleTurbulenceModel > New(const volScalarField &rho, const volVectorField &U, const surfaceScalarField &phi, const typename BasicCompressibleTurbulenceModel::transportModel &transport, const word &propertiesName)
Definition: turbulentFluidThermoModel.C:36
Foam::tmp
A class for managing temporary objects.
Definition: PtrList.H:118
Foam::addToRunTimeSelectionTable
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
Foam::velocityMotionSolver
Virtual base class for velocity motion solver.
Definition: velocityMotionSolver.H:54
Foam::polyMesh
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
velocityLaplacianFvMotionSolver.H
Foam::velocityMotionSolver::updateMesh
virtual void updateMesh(const mapPolyMesh &)
Update local data for topology changes.
Definition: velocityMotionSolver.C:76
Foam::fvMotionSolverCore
Base class for fvMesh based motionSolvers.
Definition: fvMotionSolverCore.H:48
Foam::velocityLaplacianFvMotionSolver::~velocityLaplacianFvMotionSolver
~velocityLaplacianFvMotionSolver()
Destructor.
Definition: velocityLaplacianFvMotionSolver.C:91
Foam::fvm::laplacian
tmp< fvMatrix< Type > > laplacian(const GeometricField< Type, fvPatchField, volMesh > &vf, const word &name)
Definition: fvmLaplacian.C:46
fvmLaplacian.H
Calculate the matrix for the laplacian of the field.
Foam::velocityLaplacianFvMotionSolver::velocityLaplacianFvMotionSolver
velocityLaplacianFvMotionSolver(const velocityLaplacianFvMotionSolver &)
Disallow default bitwise copy construct.
Foam::motionDiffusivity::New
static autoPtr< motionDiffusivity > New(const fvMesh &mesh, Istream &mdData)
Select null constructed.
Definition: motionDiffusivity.C:48
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::velocityLaplacianFvMotionSolver::curPoints
virtual tmp< pointField > curPoints() const
Return point location obtained from the current motion field.
Definition: velocityLaplacianFvMotionSolver.C:98
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
addToRunTimeSelectionTable.H
Macros for easy insertion into run-time selection tables.
Foam::dimensioned
Generic dimensioned Type class.
Definition: dimensionedScalarFwd.H:41
Foam
Namespace for OpenFOAM.
Definition: combustionModel.C:30
Foam::velocityLaplacianFvMotionSolver::updateMesh
virtual void updateMesh(const mapPolyMesh &)
Update topology.
Definition: velocityLaplacianFvMotionSolver.C:140
motionDiffusivity.H
found
bool found
Definition: TABSMDCalcMethod2.H:32
Foam::solve
SolverPerformance< Type > solve(fvMatrix< Type > &, const dictionary &)
Solve returning the solution statistics given convergence tolerance.
Foam::mapPolyMesh
Class containing mesh-to-mesh mapping information after a change in polyMesh topology.
Definition: mapPolyMesh.H:158
Foam::velocityLaplacianFvMotionSolver::solve
virtual void solve()
Solve for motion.
Definition: velocityLaplacianFvMotionSolver.C:118
Foam::defineTypeNameAndDebug
defineTypeNameAndDebug(combustionModel, 0)
motionInterpolation.H
lookup
stressControl lookup("compactNormalStress") >> compactNormalStress