/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 OpenFOAM Foundation Copyright (C) 2018-2019 OpenCFD Ltd. ------------------------------------------------------------------------------- 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 . Class Foam::NoSurfaceReaction Group grpLagrangianIntermediateSurfaceReactionSubModels Description Dummy surface reaction model for 'none' \*---------------------------------------------------------------------------*/ #ifndef NoSurfaceReaction_H #define NoSurfaceReaction_H #include "SurfaceReactionModel.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class NoSurfaceReaction Declaration \*---------------------------------------------------------------------------*/ template class NoSurfaceReaction : public SurfaceReactionModel { public: //- Runtime type information TypeName("none"); // Constructors //- Construct from dictionary NoSurfaceReaction(const dictionary& dict, CloudType& owner); //- Construct copy NoSurfaceReaction(const NoSurfaceReaction& srm); //- Construct and return a clone virtual autoPtr> clone() const { return autoPtr> ( new NoSurfaceReaction(*this) ); } //- Destructor virtual ~NoSurfaceReaction() = default; // Member Functions //- Flag to indicate whether model activates devolatisation model virtual bool active() const; //- Update surface reactions virtual scalar calculate ( const scalar dt, const scalar Re, const scalar nu, const label celli, const scalar d, const scalar T, const scalar Tc, const scalar pc, const scalar rhoc, const scalar mass, const scalarField& YGas, const scalarField& YLiquid, const scalarField& YSolid, const scalarField& YMixture, const scalar N, scalarField& dMassGas, scalarField& dMassLiquid, scalarField& dMassSolid, scalarField& dMassSRCarrier ) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository #include "NoSurfaceReaction.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //