dummyScotchDecomp.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2018 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 "scotchDecomp.H"
28 #include "Time.H"
29 
30 static const char* notImplementedMessage =
31 "You are trying to use scotch but do not have the scotchDecomp library loaded."
32 "\nThis message is from the dummy scotchDecomp stub library instead.\n"
33 "\n"
34 "Please install scotch and make sure that libscotch.so is in your "
35 "LD_LIBRARY_PATH.\n"
36 "The scotchDecomp library can then be built in "
37 "$FOAM_SRC/parallel/decompose/decompositionMethods/scotchDecomp\n";
38 
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44  defineTypeNameAndDebug(scotchDecomp, 0);
45 
47  (
48  decompositionMethod,
49  scotchDecomp,
50  dictionary
51  );
52 }
53 
54 // * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
55 
56 void Foam::scotchDecomp::check(const int retVal, const char* str)
57 {}
58 
59 
60 Foam::label Foam::scotchDecomp::decompose
61 (
62  const fileName& meshPath,
63  const List<label>& adjncy,
64  const List<label>& xadj,
65  const scalarField& cWeights,
66 
67  List<label>& finalDecomp
68 )
69 {
71  << notImplementedMessage << exit(FatalError);
72 
73  return -1;
74 }
75 
76 
77 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
78 
80 (
81  const dictionary& decompositionDict
82 )
83 :
84  decompositionMethod(decompositionDict)
85 {}
86 
87 
88 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
89 
90 Foam::labelList Foam::scotchDecomp::decompose
91 (
92  const polyMesh& mesh,
93  const pointField& points,
94  const scalarField& pointWeights
95 )
96 {
98  << notImplementedMessage << exit(FatalError);
99 
100  return labelList::null();
101 }
102 
103 
104 Foam::labelList Foam::scotchDecomp::decompose
105 (
106  const polyMesh& mesh,
107  const labelList& agglom,
108  const pointField& agglomPoints,
109  const scalarField& pointWeights
110 )
111 {
113  << notImplementedMessage << exit(FatalError);
114 
115  return labelList::null();
116 }
117 
118 
119 Foam::labelList Foam::scotchDecomp::decompose
120 (
121  const labelListList& globalCellCells,
122  const pointField& cellCentres,
123  const scalarField& cWeights
124 )
125 {
127  << notImplementedMessage << exit(FatalError);
128 
129  return labelList::null();
130 }
131 
132 
133 // ************************************************************************* //
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:124
error FatalError
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:158
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:319
static const char * notImplementedMessage
static const List< label > & null()
Return a null List.
Definition: ListI.H:117
Macros for easy insertion into run-time selection tables.
Field< scalar > scalarField
Specialisation of Field<T> for scalar.
Abstract base class for decomposition.
addToRunTimeSelectionTable(ensightPart, ensightPartCells, istream)
defineTypeNameAndDebug(combustionModel, 0)
scotchDecomp(const dictionary &decompositionDict)
Construct given the decomposition dictionary and mesh.
Mesh consisting of general polyhedral cells.
Definition: polyMesh.H:74
Namespace for OpenFOAM.