Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / src / OpenFOAM / interpolations / uniformInterpolationTable / uniformInterpolationTable.C
blobdd05ffc675a01faa8cecfcee2cc7bb8165bf1598
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2009-2010 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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.
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.
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/>.
24 \*---------------------------------------------------------------------------*/
26 #include "uniformInterpolationTable.H"
27 #include "Time.H"
29 // * * * * * * * * * * * *  Private Member Functions * * * * * * * * * * * * //
31 template <class Type>
32 void Foam::uniformInterpolationTable<Type>::checkTable() const
34     if (size() < 2)
35     {
36         FatalErrorIn("uniformInterpolationTable<Type>::checkTable()")
37             << "Table " << name() << ": must have at least 2 values." << nl
38             << "Table size = " << size() << nl
39             << "    min, interval width = " << x0_ << ", " << dx_ << nl
40             << exit(FatalError);
41     }
45 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
47 template <class Type>
48 Foam::uniformInterpolationTable<Type>::uniformInterpolationTable
50     const IOobject& io,
51     bool readFields
54     IOobject(io),
55     List<scalar>(2, 0.0),
56     x0_(0.0),
57     dx_(1.0),
58     log10_(false),
59     bound_(false)
61     if (readFields)
62     {
63         IOdictionary dict(io);
65         dict.lookup("data") >> *this;
66         dict.lookup("x0") >> x0_;
67         dict.lookup("dx") >> dx_;
68         dict.readIfPresent("log10", log10_);
69         dict.readIfPresent("bound", bound_);
70     }
72     checkTable();
76 template <class Type>
77 Foam::uniformInterpolationTable<Type>::uniformInterpolationTable
79     const word& tableName,
80     const objectRegistry& db,
81     const dictionary& dict,
82     const bool initialiseOnly
85     IOobject
86     (
87         tableName,
88         db.time().constant(),
89         db,
90         IOobject::NO_READ,
91         IOobject::NO_WRITE,
92         false // if used in BCs, could be used by multiple patches
93     ),
94     List<scalar>(2, 0.0),
95     x0_(readScalar(dict.lookup("x0"))),
96     dx_(readScalar(dict.lookup("dx"))),
97     log10_(dict.lookupOrDefault<Switch>("log10", false)),
98     bound_(dict.lookupOrDefault<Switch>("bound", false))
100     if (initialiseOnly)
101     {
102         const scalar xMax = readScalar(dict.lookup("xMax"));
103         const label nIntervals = static_cast<label>(xMax - x0_)/dx_ + 1;
104         this->setSize(nIntervals);
105     }
106     else
107     {
108         dict.lookup("data") >> *this;
109     }
111     checkTable();
115 template <class Type>
116 Foam::uniformInterpolationTable<Type>::uniformInterpolationTable
118     const uniformInterpolationTable& uit
121     IOobject(uit),
122     List<scalar>(uit),
123     x0_(uit.x0_),
124     dx_(uit.dx_),
125     log10_(uit.log10_),
126     bound_(uit.bound_)
128     checkTable();
132 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
134 template <class Type>
135 Foam::uniformInterpolationTable<Type>::~uniformInterpolationTable()
139 // * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * * //
141 template <class Type>
142 Type Foam::uniformInterpolationTable<Type>::interpolate(scalar x) const
144     if (bound_)
145     {
146         x = max(min(xMax() - SMALL*dx_, x), x0_);
147     }
148     else
149     {
150         if (x < x0_)
151         {
152             FatalErrorIn
153             (
154                 "uniformInterpolationTable<Type>::interpolate(scalar x)"
155             )   << "Supplied value is less than minimum table value:" << nl
156                 << "xMin=" << x0_ << ", xMax=" << xMax() << ", x=" << x << nl
157                 << exit(FatalError);
158         }
160         if (x > xMax())
161         {
162             FatalErrorIn
163             (
164                 "uniformInterpolationTable<Type>::interpolate(scalar x)"
165             )   << "Supplied value is greater than maximum table value:" << nl
166                 << "xMin=" << x0_ << ", xMax=" << xMax() << ", x=" << x << nl
167                 << exit(FatalError);
168         }
169     }
171     const label i = static_cast<label>((x - x0_)/dx_);
173     const scalar xLo = x0_ + i*dx_;
175     Type fx = (x - xLo)/dx_*(operator[](i+1) - operator[](i)) + operator[](i);
177     if (debug)
178     {
179         Info<< "Table: " << name() << ", x=" << x
180             << ", x_lo=" << xLo << ", x_hi=" << xLo + dx_
181             << ", f(x_lo)=" << operator[](i) << ", f(x_hi)=" << operator[](i+1)
182             << ", f(x)=" << fx << endl;
183     }
185     return fx;
189 template <class Type>
190 Type Foam::uniformInterpolationTable<Type>::interpolateLog10
192     scalar x
193 ) const
195     if (log10_)
196     {
197         if (x > 0)
198         {
199             x = ::log10(x);
200         }
201         else if (bound_ && (x <= 0))
202         {
203             x = x0_;
204         }
205         else
206         {
207             FatalErrorIn
208             (
209                 "uniformInterpolationTable<Type>::interpolateLog10(scalar x)"
210             )   << "Table " << name() << nl
211                 << "Supplied value must be greater than 0 when in log10 mode"
212                 << nl << "x=" << x << nl << exit(FatalError);
213         }
214     }
216     return interpolate(x);
220 template <class Type>
221 void Foam::uniformInterpolationTable<Type>::write() const
223     IOdictionary dict(*this);
225     dict.add("data", static_cast<const List<scalar>&>(*this));
226     dict.add("x0", x0_);
227     dict.add("dx", dx_);
228     if (log10_)
229     {
230         dict.add("log10", log10_);
231     }
232     if (bound_)
233     {
234         dict.add("bound", bound_);
235     }
237     dict.regIOobject::write();
241 // ************************************************************************* //