/*---------------------------------------------------------------------------*\ ========= | \\ / 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::StochasticCollisionModel Group grpLagrangianIntermediateCollisionSubModels Description Templated stochastic collision model class SourceFiles StochasticCollisionModel.C StochasticCollisionModelNew.C \*---------------------------------------------------------------------------*/ #ifndef StochasticCollisionModel_H #define StochasticCollisionModel_H #include "IOdictionary.H" #include "autoPtr.H" #include "runTimeSelectionTables.H" #include "CloudSubModelBase.H" // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // namespace Foam { /*---------------------------------------------------------------------------*\ Class StochasticCollisionModel Declaration \*---------------------------------------------------------------------------*/ template class StochasticCollisionModel : public CloudSubModelBase { protected: //- Main collision routine virtual void collide ( typename CloudType::parcelType::trackingData& td, const scalar dt ) = 0; public: //- Runtime type information TypeName("collisionModel"); //- Declare runtime constructor selection table declareRunTimeSelectionTable ( autoPtr, StochasticCollisionModel, dictionary, ( const dictionary& dict, CloudType& owner ), (dict, owner) ); // Constructors //- Construct null from owner StochasticCollisionModel(CloudType& owner); //- Construct from dictionary StochasticCollisionModel ( const dictionary& dict, CloudType& owner, const word& type ); //- Construct copy StochasticCollisionModel(const StochasticCollisionModel& cm); //- Construct and return a clone virtual autoPtr> clone() const = 0; //- Destructor virtual ~StochasticCollisionModel(); //- Selector static autoPtr> New ( const dictionary& dict, CloudType& owner ); // Member Functions //- Update the model void update ( typename CloudType::parcelType::trackingData& td, const scalar dt ); }; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // } // End namespace Foam // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #define makeStochasticCollisionModel(CloudType) \ \ typedef Foam::CloudType::kinematicCloudType kinematicCloudType; \ defineNamedTemplateTypeNameAndDebug \ ( \ Foam::StochasticCollisionModel, \ 0 \ ); \ namespace Foam \ { \ defineTemplateRunTimeSelectionTable \ ( \ StochasticCollisionModel, \ dictionary \ ); \ } #define makeStochasticCollisionModelType(SS, CloudType) \ \ typedef Foam::CloudType::kinematicCloudType kinematicCloudType; \ defineNamedTemplateTypeNameAndDebug(Foam::SS, 0); \ \ Foam::StochasticCollisionModel:: \ adddictionaryConstructorToTable> \ add##SS##CloudType##kinematicCloudType##ConstructorToTable_; // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #ifdef NoRepository #include "StochasticCollisionModel.C" #endif // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // #endif // ************************************************************************* //