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-------------------------------------------------------------------------------
10License
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
26Description
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
32SourceFiles
33
34\*---------------------------------------------------------------------------*/
35
36#ifndef Foam_scalarFwd_H
37#define Foam_scalarFwd_H
38
39// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
40
41namespace Foam
42{
43
44//- A typedef for float
45typedef float floatScalar;
46
47//- A typedef for double
48typedef double doubleScalar;
49
50
51#if defined(WM_SP)
52
53typedef floatScalar scalar;
54typedef floatScalar solveScalar;
55
56#elif defined(WM_SPDP)
57
58typedef floatScalar scalar;
59typedef doubleScalar solveScalar;
60
61#elif defined(WM_DP)
62
63typedef doubleScalar scalar;
64typedef 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// ************************************************************************* //
Namespace for OpenFOAM.
double doubleScalar
A typedef for double.
Definition: scalarFwd.H:48
float floatScalar
A typedef for float.
Definition: scalarFwd.H:45