/usr/include/freefoam/radiation/interpolationLookUpTable.H is in libfreefoam-dev 0.1.0+dfsg-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 | /*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd.
\\/ M anipulation |
-------------------------------------------------------------------------------
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/>.
Class
Foam::interpolationLookUpTable
Description
A list of lists. Interpolates based on the first dimension.
The values must be positive and monotonically increasing in each dimension
Note
- Accessing an empty list results in an error.
- Accessing a list with a single element always returns the same value.
SourceFiles
interpolationLookUpTable.C
\*---------------------------------------------------------------------------*/
#ifndef interpolationLookUpTable_H
#define interpolationLookUpTable_H
#include <OpenFOAM/List.H>
#include <OpenFOAM/ListOps.H>
#include <OpenFOAM/scalarField.H>
#include <OpenFOAM/HashTable.H>
#include <OpenFOAM/IOdictionary.H>
#include <finiteVolume/fvCFD.H>
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
namespace Foam
{
/*---------------------------------------------------------------------------*\
Class interpolationLookUpTable Declaration
\*---------------------------------------------------------------------------*/
template<class Type>
class interpolationLookUpTable
:
public List<scalarField>
{
private:
// Privsate data
//- File name
fileName fileName_;
//- Table dimensions
List<label> dim_;
//- Min on each dimension
List<scalar> min_;
//- Deltas on each dimension
List<scalar> delta_;
//- Maximum on each dimension
List<scalar> max_;
//- Dictionary entries
List<dictionary> entries_;
//- Output dictionaries
List<dictionary> output_;
//- Input indices from the look up table
List<label> entryIndices_;
//- Output Indeces from the Look Up Table
List<label> outputIndices_;
//- Field names and indices
HashTable<label> fieldIndices_;
//- Output list containing input and interpolation values of outputs
List<scalar> interpOutput_;
// Private Member Functions
//- Read the table of data from file
void readTable(const word& instance, const fvMesh& mesh);
//- Dimension table from dictionaries input and output
void dimensionTable();
//- Find table index by scalarList
label index(const List<scalar>&, const bool lastDim=true) const;
//- Find table index by scalar
label index(const scalar) const;
//- Check range of lookup value
bool checkRange(const scalar, const label) const;
//- Interpolate function return an scalar
scalar interpolate
(
const label lo,
const label hi,
const scalar lookUpValue,
const label ofield,
const label interfield
) const;
// Check list is monotonically increasing
void check() const;
// find hi index, interpolate and populate interpOutput_
void findHi(const label lo, const scalar retvals);
public:
// Constructors
//- Construct null
interpolationLookUpTable();
//- Construct given the name of the file containing the table of data
interpolationLookUpTable
(
const fileName& fn,
const word& instance,
const fvMesh& mesh
);
//- Construct from dictionary
interpolationLookUpTable(const dictionary& dict);
//- Construct copy
interpolationLookUpTable(const interpolationLookUpTable& interpTable);
// Member Functions
//- Return true if the filed exists in the table
bool found(const word& fieldName) const;
//- Return the output list given a single input scalar
const List<scalar>& lookUp(const scalar);
//- Write Look Up Table to filename.
void write
(
Ostream& os,
const fileName& fn,
const word& instance,
const fvMesh& mesh
) const;
// Access
//- Return the index of a field by name
inline label findFieldIndex(const word& fieldName) const;
//- Return const access to the output dictionaries
inline const List<dictionary>& output() const;
//- Return const access tp the dictionary entries
inline const List<dictionary>& entries() const;
//- Return const access to the list of min dimensions
inline const List<scalar>& min() const;
//- Return const access to the list of dimensions
inline const List<label>& dim() const;
//- Return const access to the deltas in each dimension
inline const List<scalar>& delta() const;
//- Return const access to the list of max dimensions
inline const List<scalar>& max() const;
//- Return const access to the table name
inline word tableName() const;
// Member Operators
//- Return an element of constant List<scalar, Type>
const scalarField& operator[](const label) const;
//- Return an element of List<scalar, Type>
scalarField& operator[](const label);
};
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "interpolationLookUpTableI.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
} // End namespace Foam
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#ifdef NoRepository
# include "interpolationLookUpTable.C"
#endif
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#endif
// ************************ vim: set sw=4 sts=4 et: ************************ //
|