/*---------------------------------------------------------------------------*\ ========= | \\ / 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 . Class Foam::SRFForce Group grpLagrangianIntermediateForceSubModels Description Calculates particle SRF reference frame force SourceFiles SRFForce.C \*---------------------------------------------------------------------------*/ #ifndef SRFForce_H #define SRFForce_H #include "ParticleForce.H" #include "SRFModel.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { class fvMesh; /*---------------------------------------------------------------------------*\ Class SRFForce Declaration \*---------------------------------------------------------------------------*/ template class SRFForce : public ParticleForce { // Private data //- Pointer to the SRF model const typename SRF::SRFModel* srfPtr_; public: //- Runtime type information TypeName("SRF"); // Constructors //- Construct from mesh SRFForce ( CloudType& owner, const fvMesh& mesh, const dictionary& dict ); //- Construct copy SRFForce(const SRFForce& srff); //- Construct and return a clone virtual autoPtr> clone() const { return autoPtr> ( new ParticleForce(*this) ); } //- Destructor virtual ~SRFForce(); // Member Functions // Evaluation //- Cache fields virtual void cacheFields(const bool store); //- Calculate the non-coupled force virtual forceSuSp calcNonCoupled ( const typename CloudType::parcelType& p, const typename CloudType::parcelType::trackingData& td, const scalar dt, const scalar mass, const scalar Re, const scalar muc ) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository #include "SRFForce.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //