mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
- as per std::array and FixedList STYLE: rename Scalar.[CH] -> scalarImpl.[CH] (these are internal files) - added inclusion guards to protect against bad use
63 lines
2.2 KiB
C
63 lines
2.2 KiB
C
/*---------------------------------------------------------------------------*\
|
|
========= |
|
|
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
|
|
\\ / O peration |
|
|
\\ / A nd | www.openfoam.com
|
|
\\/ M anipulation |
|
|
-------------------------------------------------------------------------------
|
|
Copyright (C) 2011-2013 OpenFOAM Foundation
|
|
Copyright (C) 2017 OpenCFD Ltd.
|
|
-------------------------------------------------------------------------------
|
|
License
|
|
This file is part of OpenFOAM.
|
|
|
|
OpenFOAM is free software: you can redistribute it and/or modify it
|
|
under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
|
|
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
\*---------------------------------------------------------------------------*/
|
|
|
|
#include "floatScalar.H"
|
|
#include "error.H"
|
|
#include "parsing.H"
|
|
#include "IOstreams.H"
|
|
|
|
#include <cstdlib> // For string -> floating point conversions
|
|
#include <sstream>
|
|
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// scalarImpl.C is used for template-like substitution (but using macros)
|
|
|
|
#define Scalar floatScalar
|
|
#define ScalarVGREAT floatScalarVGREAT
|
|
#define ScalarVSMALL floatScalarVSMALL
|
|
#define ScalarROOTVGREAT floatScalarROOTVGREAT
|
|
#define ScalarROOTVSMALL floatScalarROOTVSMALL
|
|
#define ScalarRead readFloat
|
|
// Convert using larger representation to properly capture underflow
|
|
#define ScalarConvert ::strtod
|
|
|
|
#define Foam_use_scalarImpl_code
|
|
#include "scalarImpl.C"
|
|
#undef Foam_use_scalarImpl_code
|
|
|
|
#undef Scalar
|
|
#undef ScalarVGREAT
|
|
#undef ScalarVSMALL
|
|
#undef ScalarROOTVGREAT
|
|
#undef ScalarROOTVSMALL
|
|
#undef ScalarRead
|
|
#undef ScalarConvert
|
|
|
|
// ************************************************************************* //
|