OpenFOAM
10
The OpenFOAM Foundation
▼
OpenFOAM
►
Free, Open Source Software from the OpenFOAM Foundation
►
Namespaces
►
Classes
▼
Files
►
File List
►
File Members
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Pages
itoa.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 "itoa.H"
27
28
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
29
30
namespace
Foam
31
{
32
33
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
34
35
word
itoa
(
const
label
n)
36
{
37
const
label
offset =
'0'
;
38
const
label
length = 3;
39
40
char
val[length + 1];
41
42
label
leftOfN =
n
;
43
44
for
(
label
i=0; i<length; i++)
45
{
46
label
j =
label
(leftOfN/
pow
(10, length-i-1));
47
leftOfN -= j*
pow
(10,length-i-1);
48
val[i] = offset + j;
49
}
50
51
val[length] = 0;
52
53
return
val;
54
}
55
56
57
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
58
59
}
// End namespace Foam
60
61
// ************************************************************************* //
Foam::label
FvWallInfoData< WallInfo, label > label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition:
FvWallInfoData.H:189
Foam::itoa
word itoa(const label n)
Foam::pow
dimensionedScalar pow(const dimensionedScalar &ds, const dimensionedScalar &expt)
Definition:
dimensionedScalar.C:73
n
label n
Definition:
TABSMDCalcMethod2.H:31
Foam
Namespace for OpenFOAM.
Definition:
atmBoundaryLayer.H:213
applications
utilities
postProcessing
dataConversion
foamToGMV
itoa.C
Generated by
1.8.13