initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / fvMotionSolver / motionDiffusivity / motionDiffusivity / motionDiffusivity.C
blobb794db4a4395c0bac94b932bb971918deda4b5f7
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
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.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 #include "motionDiffusivity.H"
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 namespace Foam
33     defineTypeNameAndDebug(motionDiffusivity, 0);
35     defineRunTimeSelectionTable(motionDiffusivity, Istream);
39 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
41 Foam::motionDiffusivity::motionDiffusivity(const fvMotionSolver& mSolver)
43     mSolver_(mSolver)
47 // * * * * * * * * * * * * * * * * Selectors * * * * * * * * * * * * * * * * //
49 Foam::autoPtr<Foam::motionDiffusivity> Foam::motionDiffusivity::New
51     const fvMotionSolver& mSolver,
52     Istream& mdData
55     word diffTypeName(mdData);
57     Info << "Selecting motion diffusion: " << diffTypeName << endl;
59     IstreamConstructorTable::iterator cstrIter =
60         IstreamConstructorTablePtr_->find(diffTypeName);
62     if (cstrIter == IstreamConstructorTablePtr_->end())
63     {
64         FatalErrorIn
65         (
66             "motionDiffusivity::New(const tetPolyMesh& tetMesh, "
67             "const Istream& dict)"
68         )   << "Unknown diffusion type " << diffTypeName
69             << endl << endl
70             << "Valid diffusion types are :" << endl
71             << IstreamConstructorTablePtr_->toc()
72             << exit(FatalError);
73     }
75     return autoPtr<motionDiffusivity>(cstrIter()(mSolver, mdData));
79 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
81 Foam::motionDiffusivity::~motionDiffusivity()
85 // ************************************************************************* //