/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | www.openfoam.com \\/ M anipulation | ------------------------------------------------------------------------------- Copyright (C) 2011-2016 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::NoSurfaceFilm Group grpLagrangianIntermediateSurfaceFilmSubModels Description Place holder for 'none' option SourceFiles NoSurfaceFilm.C \*---------------------------------------------------------------------------*/ #ifndef NoSurfaceFilm_H #define NoSurfaceFilm_H #include "SurfaceFilmModel.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class NoSurfaceFilm Declaration \*---------------------------------------------------------------------------*/ template class NoSurfaceFilm : public SurfaceFilmModel { protected: // Protected data //- Convenience typedef for parcel type typedef typename CloudType::parcelType parcelType; public: //- Runtime type information TypeName("none"); // Constructors //- Construct from dictionary NoSurfaceFilm(const dictionary&, CloudType&); //- Construct copy NoSurfaceFilm(const NoSurfaceFilm& dm); //- Construct and return a clone virtual autoPtr> clone() const { return autoPtr> ( new NoSurfaceFilm(*this) ); } //- Destructor virtual ~NoSurfaceFilm(); // Member Functions // Evaluation //- Flag to indicate whether model activates the surface film model virtual bool active() const; //- Transfer parcel from cloud to surface film // Returns true if parcel is to be transferred virtual bool transferParcel ( parcelType& p, const polyPatch& pp, bool& keepParticle ); //- Set parcel properties virtual void setParcelProperties ( parcelType& p, const label filmCelli ) const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository #include "NoSurfaceFilm.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //