/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2016 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::InterfaceForce Description Vector force apply to particles to avoid the crossing of particles from one phase to the other. The magnitude is calculated as C*mass*grad(alpha) SourceFiles InterfaceForce.C \*---------------------------------------------------------------------------*/ #ifndef InterfaceForce_H #define InterfaceForce_H #include "ParticleForce.H" #include "interpolation.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { class fvMesh; /*---------------------------------------------------------------------------*\ Class InterfaceForce Declaration \*---------------------------------------------------------------------------*/ template class InterfaceForce : public ParticleForce { // Private data //- Name of phase fraction field const word alphaName_; //- Model constant const scalar C_; //- Interpolator for gradInterForce autoPtr> gradInterForceInterpPtr_; public: //- Runtime type information TypeName("interface"); // Constructors //- Construct from mesh InterfaceForce ( CloudType& owner, const fvMesh& mesh, const dictionary& dict ); //- Construct copy InterfaceForce(const InterfaceForce& gf); //- Construct and return a clone virtual autoPtr> clone() const { return autoPtr> ( new InterfaceForce(*this) ); } //- Destructor virtual ~InterfaceForce(); // 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 "InterfaceForce.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //