/*---------------------------------------------------------------------------*\ ========= | \\ / 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 . \*---------------------------------------------------------------------------*/ #include "singleStepCombustion.H" #include "fvmSup.H" namespace Foam { namespace combustionModels { // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // template singleStepCombustion::singleStepCombustion ( const word& modelType, const fvMesh& mesh, const word& phaseName ) : CombThermoType(modelType, mesh, phaseName), singleMixturePtr_(NULL), wFuel_ ( IOobject ( IOobject::groupName("wFuel", phaseName), this->mesh().time().timeName(), this->mesh(), IOobject::NO_READ, IOobject::NO_WRITE ), this->mesh(), dimensionedScalar("zero", dimMass/dimVolume/dimTime, 0.0) ), semiImplicit_(readBool(this->coeffs_.lookup("semiImplicit"))) { if (isA>(this->thermo())) { singleMixturePtr_ = &dynamic_cast&> ( this->thermo() ); } else { FatalErrorInFunction << "Inconsistent thermo package for " << this->type() << " model:\n" << " " << this->thermo().type() << nl << nl << "Please select a thermo package based on " << "singleStepReactingMixture" << exit(FatalError); } if (semiImplicit_) { Info<< "Combustion mode: semi-implicit" << endl; } else { Info<< "Combustion mode: explicit" << endl; } } // * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // template singleStepCombustion::~singleStepCombustion() {} // * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * // template tmp singleStepCombustion::R ( volScalarField& Y ) const { const label specieI = this->thermoPtr_->composition().species()[Y.member()]; volScalarField wSpecie ( wFuel_*singleMixturePtr_->specieStoichCoeffs()[specieI] ); if (semiImplicit_) { const label fNorm = singleMixturePtr_->specieProd()[specieI]; const volScalarField fres(singleMixturePtr_->fres(specieI)); wSpecie /= max(fNorm*(Y - fres), scalar(1e-2)); return -fNorm*wSpecie*fres + fNorm*fvm::Sp(wSpecie, Y); } else { return wSpecie + fvm::Sp(0.0*wSpecie, Y); } } template tmp singleStepCombustion::Sh() const { const label fuelI = singleMixturePtr_->fuelIndex(); volScalarField& YFuel = const_cast(this->thermoPtr_->composition().Y(fuelI)); return -singleMixturePtr_->qFuel()*(R(YFuel) & YFuel); } template tmp singleStepCombustion::dQ() const { tmp tdQ ( new volScalarField ( IOobject ( IOobject::groupName("dQ", this->phaseName_), this->mesh_.time().timeName(), this->mesh_, IOobject::NO_READ, IOobject::NO_WRITE, false ), this->mesh_, dimensionedScalar("dQ", dimEnergy/dimTime, 0.0) ) ); if (this->active()) { volScalarField& dQ = tdQ.ref(); dQ.ref() = this->mesh().V()*Sh()(); } return tdQ; } template bool singleStepCombustion::read() { if (CombThermoType::read()) { return true; } else { return false; } } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace combustionModels } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //