motionDiffusivity.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 
26 #include "motionDiffusivity.H"
27 
28 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
29 
30 namespace Foam
31 {
32  defineTypeNameAndDebug(motionDiffusivity, 0);
33  defineRunTimeSelectionTable(motionDiffusivity, Istream);
34 }
35 
36 
37 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
38 
40 :
41  mesh_(mesh)
42 {}
43 
44 
45 // * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * * //
46 
48 (
49  const fvMesh& mesh,
50  Istream& mdData
51 )
52 {
53  const word motionType(mdData);
54 
55  Info<< "Selecting motion diffusion: " << motionType << endl;
56 
57  IstreamConstructorTable::iterator cstrIter =
58  IstreamConstructorTablePtr_->find(motionType);
59 
60  if (cstrIter == IstreamConstructorTablePtr_->end())
61  {
63  << "Unknown diffusion type "
64  << motionType << nl << nl
65  << "Valid diffusion types are :" << endl
66  << IstreamConstructorTablePtr_->sortedToc()
67  << exit(FatalError);
68  }
69 
70  return autoPtr<motionDiffusivity>(cstrIter()(mesh, mdData));
71 }
72 
73 
74 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
75 
77 {}
78 
79 
80 // ************************************************************************* //
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:124
error FatalError
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:319
An Istream is an abstract base class for all input systems (streams, files, token lists etc)...
Definition: Istream.H:57
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
A class for handling words, derived from string.
Definition: word.H:59
motionDiffusivity(const fvMesh &mesh)
Construct for the given fvMesh.
static const char nl
Definition: Ostream.H:262
defineRunTimeSelectionTable(reactionRateFlameArea, dictionary)
defineTypeNameAndDebug(combustionModel, 0)
virtual ~motionDiffusivity()
Destructor.
const fvMesh & mesh() const
Return reference to the mesh.
Mesh data needed to do the Finite Volume discretisation.
Definition: fvMesh.H:78
messageStream Info
static autoPtr< motionDiffusivity > New(const fvMesh &mesh, Istream &mdData)
Select null constructed.
Namespace for OpenFOAM.