scalarFwd.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2020 OpenCFD Ltd.
9 -------------------------------------------------------------------------------
10 License
11  This file is part of OpenFOAM.
12 
13  OpenFOAM is free software: you can redistribute it and/or modify it
14  under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
19  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
20  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
21  for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
25 
26 Description
27  Typedefs for float/double/scalar without requiring scalar.H
28 
29  The definition of scalar as a floating-point number depends
30  on pre-processor macros WM_SP, WM_SPDP or WM_DP being defined.
31 
32 SourceFiles
33 
34 \*---------------------------------------------------------------------------*/
35 
36 #ifndef scalarFwd_H
37 #define scalarFwd_H
38 
39 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40 
41 namespace Foam
42 {
43 
44 //- A typedef for float
45 typedef float floatScalar;
46 
47 //- A typedef for double
48 typedef double doubleScalar;
49 
50 
51 #if defined(WM_SP)
52 
53 typedef floatScalar scalar;
54 typedef floatScalar solveScalar;
55 
56 #elif defined(WM_SPDP)
57 
58 typedef floatScalar scalar;
59 typedef doubleScalar solveScalar;
60 
61 #elif defined(WM_DP)
62 
63 typedef doubleScalar scalar;
64 typedef doubleScalar solveScalar;
65 
66 #else
67 // #error "PRECISION must be set to WM_SP, WM_SPDP or WM_DP"
68 #endif
69 
70 }
71 
72 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
73 
74 #endif
75 
76 // ************************************************************************* //
Foam::doubleScalar
double doubleScalar
A typedef for double.
Definition: scalarFwd.H:48
Foam::floatScalar
float floatScalar
A typedef for float.
Definition: scalarFwd.H:45
Foam
Namespace for OpenFOAM.
Definition: atmBoundaryLayer.C:33