Better bounding on topo change
[foam-extend-3.2.git] / src / dynamicMesh / meshMotion / fvMotionSolver / motionDiffusivity / directional / directionalDiffusivity.C
blob3d8e4f7d161e3aaf5aad048cfe9047cec9760a8e
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | foam-extend: Open Source CFD
4    \\    /   O peration     | Version:     3.2
5     \\  /    A nd           | Web:         http://www.foam-extend.org
6      \\/     M anipulation  | For copyright notice see file Copyright
7 -------------------------------------------------------------------------------
8 License
9     This file is part of foam-extend.
11     foam-extend 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 3 of the License, or (at your
14     option) any later version.
16     foam-extend is distributed in the hope that it will be useful, but
17     WITHOUT ANY WARRANTY; without even the implied warranty of
18     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
19     General Public License for more details.
21     You should have received a copy of the GNU General Public License
22     along with foam-extend.  If not, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "directionalDiffusivity.H"
27 #include "addToRunTimeSelectionTable.H"
29 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
31 namespace Foam
33     defineTypeNameAndDebug(directionalDiffusivity, 0);
35     addToRunTimeSelectionTable
36     (
37         motionDiffusivity,
38         directionalDiffusivity,
39         Istream
40     );
44 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
46 Foam::directionalDiffusivity::directionalDiffusivity
48     const fvMotionSolver& mSolver,
49     Istream& mdData
52     uniformDiffusivity(mSolver, mdData),
53     diffusivityVector_(mdData)
55     correct();
59 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
61 Foam::directionalDiffusivity::~directionalDiffusivity()
65 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
67 void Foam::directionalDiffusivity::correct()
69     const fvMesh& mesh = mSolver().mesh();
71     surfaceVectorField n = mesh.Sf()/mesh.magSf();
72     faceDiffusivity_ == (n & cmptMultiply(diffusivityVector_, n));
76 // ************************************************************************* //