/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2017 OpenFOAM Foundation ------------------------------------------------------------------------------- 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 . \*---------------------------------------------------------------------------*/ // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template inline Foam::constAnIsoSolidTransport::constAnIsoSolidTransport ( const Thermo& t, const vector kappa ) : Thermo(t), kappa_(kappa) {} template inline Foam::constAnIsoSolidTransport::constAnIsoSolidTransport ( const word& name, const constAnIsoSolidTransport& ct ) : Thermo(name, ct), kappa_(ct.kappa_) {} template inline Foam::autoPtr> Foam::constAnIsoSolidTransport::New ( const dictionary& dict ) { return autoPtr>::New(dict); } // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // template inline Foam::scalar Foam::constAnIsoSolidTransport:: kappa(const scalar p, const scalar T) const { return mag(kappa_); } template inline Foam::vector Foam::constAnIsoSolidTransport:: Kappa(const scalar p, const scalar T) const { return kappa_; } template inline Foam::scalar Foam::constAnIsoSolidTransport:: mu(const scalar p, const scalar T) const { NotImplemented; return 0; } template inline Foam::vector Foam::constAnIsoSolidTransport:: alphah(const scalar p, const scalar T) const { return kappa_/this->Cp(p, T); } // * * * * * * * * * * * * * * * Member Operators * * * * * * * * * * * * * // template inline void Foam::constAnIsoSolidTransport::operator+= ( const constAnIsoSolidTransport& ct ) { scalar Y1 = this->Y(); Y1 /= this->Y(); scalar Y2 = ct.Y()/this->Y(); kappa_ = Y1*kappa_ + Y2*ct.kappa_; } // * * * * * * * * * * * * * * * Friend Operators * * * * * * * * * * * * * // template inline Foam::constAnIsoSolidTransport Foam::operator* ( const scalar s, const constAnIsoSolidTransport& ct ) { return constAnIsoSolidTransport ( s*static_cast(ct), ct.kappa_ ); } // ************************************************************************* //