BUG: PointEdgeWave : n cyclics bool instead of label
[OpenFOAM-1.6.x.git] / src / decompositionMethods / decompositionMethods / geomDecomp / geomDecomp.C
blobb3cfa8ff524966670364c65eebbd318f67a8e0b4
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 "geomDecomp.H"
29 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
31 Foam::geomDecomp::geomDecomp
33     const dictionary& decompositionDict,
34     const word& derivedType
37     decompositionMethod(decompositionDict),
38     geomDecomDict_(decompositionDict.subDict(derivedType + "Coeffs")),
39     n_(geomDecomDict_.lookup("n")),
40     delta_(readScalar(geomDecomDict_.lookup("delta"))),
41     rotDelta_(I)
43     // check that the case makes sense :
45     if (nProcessors_ != n_.x()*n_.y()*n_.z())
46     {
47         FatalErrorIn
48         (
49             "geomDecomp::geomDecomp"
50             "(const dictionary& decompositionDict)"
51         )   << "Wrong number of processor divisions in geomDecomp:" << nl
52             << "Number of domains    : " << nProcessors_ << nl
53             << "Wanted decomposition : " << n_
54             << exit(FatalError);
55     }
57     scalar d = 1 - 0.5*delta_*delta_;
58     scalar d2 = sqr(d);
60     scalar a = delta_;
61     scalar a2 = sqr(a);
63     rotDelta_ = tensor
64     (
65         d2,         -a*d,         a,
66         a*d - a2*d,  a*a2 + d2,  -2*a*d,
67         a*d2 + a2,   a*d - a2*d,  d2 - a2
68     );
72 // ************************************************************************* //