/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2015-2018 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 . \*---------------------------------------------------------------------------*/ #include "Henry.H" // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template Foam::interfaceCompositionModels::Henry::Henry ( const dictionary& dict, const phasePair& pair ) : InterfaceCompositionModel(dict, pair), k_(dict.lookup("k")), YSolvent_ ( IOobject ( IOobject::groupName("YSolvent", pair.name()), pair.phase1().mesh().time().timeName(), pair.phase1().mesh() ), pair.phase1().mesh(), dimensionedScalar("one", dimless, 1) ) { if (k_.size() != this->speciesNames_.size()) { FatalErrorInFunction << "Differing number of species and solubilities" << exit(FatalError); } } // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // template void Foam::interfaceCompositionModels::Henry::update ( const volScalarField& Tf ) { YSolvent_ = scalar(1); for (const word& speciesName : this->speciesNames_) { YSolvent_ -= Yf(speciesName, Tf); } } template Foam::tmp Foam::interfaceCompositionModels::Henry::Yf ( const word& speciesName, const volScalarField& Tf ) const { const label index = this->speciesNames_.find(speciesName); if (index >= 0) { return k_[index] *this->otherThermo_.composition().Y(speciesName) *this->otherThermo_.rhoThermo::rho() /this->thermo_.rhoThermo::rho(); } else { return YSolvent_ *this->thermo_.composition().Y(speciesName); } } template Foam::tmp Foam::interfaceCompositionModels::Henry::YfPrime ( const word& speciesName, const volScalarField& Tf ) const { return volScalarField::New ( IOobject::groupName("YfPrime", this->pair_.name()), this->pair_.phase1().mesh(), dimensionedScalar(dimless/dimTemperature) ); } // ************************************************************************* //