OF-POSTECH-1/libs/chemistryModel_POSTECH/chemistrySolver/EulerImplicit/EulerImplicit.C
2017-08-03 22:15:03 +09:00

208 lines
5.2 KiB
C

/*---------------------------------------------------------------------------*\
========= |
\\ / F ield | OpenFOAM: The Open Source CFD Toolbox
\\ / O peration |
\\ / A nd | Copyright (C) 2011-2016 OpenFOAM Foundation
\\/ M anipulation |
-------------------------------------------------------------------------------
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 <http://www.gnu.org/licenses/>.
\*---------------------------------------------------------------------------*/
#include "EulerImplicit.H"
#include "addToRunTimeSelectionTable.H"
#include "simpleMatrix.H"
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
template<class ChemistryModel>
Foam::EulerImplicit<ChemistryModel>::EulerImplicit
(
const fvMesh& mesh,
const word& phaseName
)
:
chemistrySolver<ChemistryModel>(mesh, phaseName),
coeffsDict_(this->subDict("EulerImplicitCoeffs")),
cTauChem_(readScalar(coeffsDict_.lookup("cTauChem"))),
eqRateLimiter_(coeffsDict_.lookup("equilibriumRateLimiter")),
cTp_(this->nEqns())
{}
// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
template<class ChemistryModel>
Foam::EulerImplicit<ChemistryModel>::~EulerImplicit()
{}
// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
template<class ChemistryModel>
void Foam::EulerImplicit<ChemistryModel>::updateRRInReactionI
(
const label index,
const scalar pr,
const scalar pf,
const scalar corr,
const label lRef,
const label rRef,
const scalar p,
const scalar T,
simpleMatrix<scalar>& RR
) const
{
const Reaction<typename ChemistryModel::thermoType>& R =
this->reactions_[index];
forAll(R.lhs(), s)
{
label si = R.lhs()[s].index;
scalar sl = R.lhs()[s].stoichCoeff;
RR[si][rRef] -= sl*pr*corr;
RR[si][lRef] += sl*pf*corr;
}
forAll(R.rhs(), s)
{
label si = R.rhs()[s].index;
scalar sr = R.rhs()[s].stoichCoeff;
RR[si][lRef] -= sr*pf*corr;
RR[si][rRef] += sr*pr*corr;
}
}
template<class ChemistryModel>
void Foam::EulerImplicit<ChemistryModel>::solve
(
scalarField& c,
scalar& T,
scalar& p,
scalar& deltaT,
scalar& subDeltaT
) const
{
const label nSpecie = this->nSpecie();
simpleMatrix<scalar> RR(nSpecie, 0, 0);
for (label i=0; i<nSpecie; i++)
{
c[i] = max(0.0, c[i]);
}
// Calculate the absolute enthalpy
scalar cTot = sum(c);
typename ChemistryModel::thermoType mixture
(
(c[0]/cTot)*this->specieThermo_[0]
);
for (label i=1; i<nSpecie; i++)
{
mixture += (c[i]/cTot)*this->specieThermo_[i];
}
scalar ha = mixture.Ha(p, T);
scalar deltaTEst = min(deltaT, subDeltaT);
forAll(this->reactions(), i)
{
scalar pf, cf, pr, cr;
label lRef, rRef;
scalar omegai = this->omegaI(i, c, T, p, pf, cf, lRef, pr, cr, rRef);
scalar corr = 1.0;
if (eqRateLimiter_)
{
if (omegai < 0.0)
{
corr = 1.0/(1.0 + pr*deltaTEst);
}
else
{
corr = 1.0/(1.0 + pf*deltaTEst);
}
}
updateRRInReactionI(i, pr, pf, corr, lRef, rRef, p, T, RR);
}
// Calculate the stable/accurate time-step
scalar tMin = GREAT;
for (label i=0; i<nSpecie; i++)
{
scalar d = 0;
for (label j=0; j<nSpecie; j++)
{
d -= RR(i, j)*c[j];
}
if (d < -SMALL)
{
tMin = min(tMin, -(c[i] + SMALL)/d);
}
else
{
d = max(d, SMALL);
scalar cm = max(cTot - c[i], 1.0e-5);
tMin = min(tMin, cm/d);
}
}
subDeltaT = cTauChem_*tMin;
deltaT = min(deltaT, subDeltaT);
// Add the diagonal and source contributions from the time-derivative
for (label i=0; i<nSpecie; i++)
{
RR(i, i) += 1.0/deltaT;
RR.source()[i] = c[i]/deltaT;
}
// Solve for the new composition
c = RR.LUsolve();
// Limit the composition
for (label i=0; i<nSpecie; i++)
{
c[i] = max(0.0, c[i]);
}
// Update the temperature
cTot = sum(c);
mixture = (c[0]/cTot)*this->specieThermo_[0];
for (label i=1; i<nSpecie; i++)
{
mixture += (c[i]/cTot)*this->specieThermo_[i];
}
T = mixture.THa(ha, p, T);
/*
for (label i=0; i<nSpecie; i++)
{
cTp_[i] = c[i];
}
cTp_[nSpecie] = T;
cTp_[nSpecie+1] = p;
*/
}
// ************************************************************************* //