Table.C
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | Copyright (C) 2011-2015 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 "Table.H"
27 
28 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
29 
30 template<class Type>
31 Foam::Table<Type>::Table(const word& entryName, const dictionary& dict)
32 :
33  TableBase<Type>(entryName, dict)
34 {
35  Istream& is(dict.lookup(entryName));
36  word entryType(is);
37 
38  token firstToken(is);
39  is.putBack(firstToken);
40  if (firstToken == token::BEGIN_SQR)
41  {
42  is >> this->dimensions_;
43  }
44  is >> this->table_;
45 
47 }
48 
49 
50 template<class Type>
52 :
53  TableBase<Type>(tbl)
54 {}
55 
56 
57 // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
58 
59 template<class Type>
61 {}
62 
63 
64 // ************************************************************************* //
Table.H
Foam::word
A class for handling words, derived from string.
Definition: word.H:59
Foam::token
A token holds items read from Istream.
Definition: token.H:67
Foam::Table::Table
Table(const word &entryName, const dictionary &dict)
Construct from entry name and Istream.
Definition: Table.C:31
Foam::Table
Templated table container data entry. Items are stored in a list of Tuple2's. First column is always ...
Definition: Table.H:56
Foam::Istream
An Istream is an abstract base class for all input systems (streams, files, token lists etc)....
Definition: Istream.H:57
Foam::Table::~Table
virtual ~Table()
Destructor.
Definition: Table.C:60
dict
dictionary dict
Definition: searchingEngine.H:14
Foam::dictionary
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:137
Foam::Istream::putBack
void putBack(const token &)
Put back token.
Definition: Istream.C:30
Foam::TableBase::check
void check() const
Check the table for size and consistency.
Definition: TableBase.C:186
Foam::token::BEGIN_SQR
@ BEGIN_SQR
Definition: token.H:102
Foam::TableBase
Base class for table with bounds handling, interpolation and integration.
Definition: TableBase.H:47