BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / thermophysicalModels / solid / transport / const / constSolidTransportI.H
blob52a031b8c9b9d3361d210d1947bd99250ed273a8
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
28 template<class thermo>
29 inline Foam::constSolidTransport<thermo>::constSolidTransport
31     const thermo& t,
32     const scalar k
35     thermo(t),
36     K_(k)
40 template<class thermo>
41 inline Foam::constSolidTransport<thermo>::constSolidTransport
43     const word& name,
44     const constSolidTransport& ct
47     thermo(name, ct),
48     K_(ct.K_)
52 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
54 template<class thermo>
55 inline Foam::scalar Foam::constSolidTransport<thermo>::K(const scalar T) const
57     return K_;
61 template<class thermo>
62 inline Foam::scalar Foam::constSolidTransport<thermo>::alpha
64     const scalar T
65 ) const
67     scalar Cp = this->Cp(T);
69     scalar rho = this->rho(T);
71     return K_/(rho*Cp);
75 // ************************************************************************* //