/*---------------------------------------------------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | \\ / A nd | Copyright (C) 2011-2015 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 . Class Foam::CloudFunctionObject Description Templated cloud function object base class SourceFiles CloudFunctionObject.C CloudFunctionObjectNew.C \*---------------------------------------------------------------------------*/ #ifndef CloudFunctionObject_H #define CloudFunctionObject_H #include "IOdictionary.H" #include "autoPtr.H" #include "runTimeSelectionTables.H" #include "CloudSubModelBase.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { class polyPatch; class tetIndices; /*---------------------------------------------------------------------------*\ Class CloudFunctionObject Declaration \*---------------------------------------------------------------------------*/ template class CloudFunctionObject : public CloudSubModelBase { // Private data //- Output path fileName outputDir_; // Private Member Functions //- Write post-processing info virtual void write(); public: //- Runtime type information TypeName("cloudFunctionObject"); //- Declare runtime constructor selection table declareRunTimeSelectionTable ( autoPtr, CloudFunctionObject, dictionary, ( const dictionary& dict, CloudType& owner, const word& modelName ), (dict, owner, modelName) ); // Constructors //- Construct null from owner CloudFunctionObject(CloudType& owner); //- Construct from dictionary CloudFunctionObject ( const dictionary& dict, CloudType& owner, const word& objectType, const word& modelName ); //- Construct copy CloudFunctionObject(const CloudFunctionObject& ppm); //- Construct and return a clone virtual autoPtr > clone() const { return autoPtr > ( new CloudFunctionObject(*this) ); } //- Destructor virtual ~CloudFunctionObject(); //- Selector static autoPtr > New ( const dictionary& dict, CloudType& owner, const word& objectType, const word& modelName ); // Member Functions // Evaluation //- Pre-evolve hook virtual void preEvolve(); //- Post-evolve hook virtual void postEvolve(); //- Post-move hook virtual void postMove ( typename CloudType::parcelType& p, const label cellI, const scalar dt, const point& position0, bool& keepParticle ); //- Post-patch hook virtual void postPatch ( const typename CloudType::parcelType& p, const polyPatch& pp, const scalar trackFraction, const tetIndices& testIs, bool& keepParticle ); //- Post-face hook virtual void postFace ( const typename CloudType::parcelType& p, const label faceI, bool& keepParticle ); // Input/output //- Return the output path const fileName& outputDir() const; //- Return the output time path fileName outputTimeDir() const; }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #define makeCloudFunctionObject(CloudType) \ \ typedef Foam::CloudType::kinematicCloudType kinematicCloudType; \ defineNamedTemplateTypeNameAndDebug \ ( \ Foam::CloudFunctionObject, \ 0 \ ); \ namespace Foam \ { \ defineTemplateRunTimeSelectionTable \ ( \ CloudFunctionObject, \ dictionary \ ); \ } #define makeCloudFunctionObjectType(SS, CloudType) \ \ typedef Foam::CloudType::kinematicCloudType kinematicCloudType; \ defineNamedTemplateTypeNameAndDebug(Foam::SS, 0); \ \ Foam::CloudFunctionObject:: \ adddictionaryConstructorToTable > \ add##SS##CloudType##kinematicCloudType##ConstructorToTable_; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository # include "CloudFunctionObject.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //