nonUniformTableThermophysicalFunctionI.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2020 OpenFOAM Foundation
9  Copyright (C) 2020 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
12  This file is part of OpenFOAM.
13 
14  OpenFOAM is free software: you can redistribute it and/or modify it
15  under the terms of the GNU General Public License as published by
16  the Free Software Foundation, either version 3 of the License, or
17  (at your option) any later version.
18 
19  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22  for more details.
23 
24  You should have received a copy of the GNU General Public License
25  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26 
27 \*---------------------------------------------------------------------------*/
28 
30 
31 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
32 
33 inline Foam::label Foam::nonUniformTable::index
34 (
35  scalar p,
36  scalar T
37 ) const
38 {
39  if (T < Trange_.min() || T > Trange_.max())
40  {
42  << "Temperature " << T << " out of range " << Trange_ << nl
43  << " for nonUniformTable " << name_
44  << exit(FatalError);
45  }
46 
47  const scalar nd = (T - Trange_.min())/deltaT_;
48  const label j = nd;
49 
50  label i = jumpTable_[j];
51 
52  if (i < values_.size() - 1 && T > values_[i + 1].first())
53  {
54  ++i;
55  }
56 
57  return i;
58 }
59 
60 
61 // ************************************************************************* //
p
volScalarField & p
Definition: createFieldRefs.H:8
Foam::nonUniformTable::index
label index(scalar p, scalar T) const
Definition: nonUniformTableThermophysicalFunctionI.H:34
Foam::FatalError
error FatalError
T
const volScalarField & T
Definition: createFieldRefs.H:2
Foam::exit
errorManipArg< error, int > exit(error &err, const int errNo=1)
Definition: errorManip.H:130
FatalErrorInFunction
#define FatalErrorInFunction
Report an error message using Foam::FatalError.
Definition: error.H:381
Foam::nl
constexpr char nl
Definition: Ostream.H:385
nonUniformTableThermophysicalFunction.H