diff --git a/src/lagrangian/intermediate/parcels/include/makeParcelPatchInteractionModels.H b/src/lagrangian/intermediate/parcels/include/makeParcelPatchInteractionModels.H index ed358a2d4afb5eacaaba763b5466a59b355692ad..a7bc0c26178f423053641f9dbd00bc5b71878178 100644 --- a/src/lagrangian/intermediate/parcels/include/makeParcelPatchInteractionModels.H +++ b/src/lagrangian/intermediate/parcels/include/makeParcelPatchInteractionModels.H @@ -31,6 +31,7 @@ License #include "KinematicCloud.H" #include "LocalInteraction.H" +#include "NoInteraction.H" #include "Rebound.H" #include "StandardWallInteraction.H" @@ -47,6 +48,12 @@ License ParcelType \ ); \ makePatchInteractionModelType \ + ( \ + NoInteraction, \ + KinematicCloud, \ + ParcelType \ + ); \ + makePatchInteractionModelType \ ( \ Rebound, \ KinematicCloud, \ diff --git a/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/NoInteraction/NoInteraction.C b/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/NoInteraction/NoInteraction.C new file mode 100644 index 0000000000000000000000000000000000000000..96fb215886fed4263af5ec853659b3d30d9f93e6 --- /dev/null +++ b/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/NoInteraction/NoInteraction.C @@ -0,0 +1,93 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd. + \\/ 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 <http://www.gnu.org/licenses/>. + +\*---------------------------------------------------------------------------*/ + +#include "NoInteraction.H" + +// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * // + +template<class CloudType> +Foam::NoInteraction<CloudType>::NoInteraction +( + const dictionary&, + CloudType& owner +) +: + PatchInteractionModel<CloudType>(owner) +{} + + +template<class CloudType> +Foam::NoInteraction<CloudType>::NoInteraction +( + const NoInteraction<CloudType>& pim +) +: + PatchInteractionModel<CloudType>(pim) +{} + + +// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * // + +template<class CloudType> +Foam::NoInteraction<CloudType>::~NoInteraction() +{} + + +// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * // + +template<class CloudType> +bool Foam::NoInteraction<CloudType>::active() const +{ + return false; +} + + +template<class CloudType> +bool Foam::NoInteraction<CloudType>::correct +( + typename CloudType::parcelType& p, + const polyPatch&, + bool&, + const scalar, + const tetIndices& +) const +{ + notImplemented + ( + "bool Foam::NoInteraction<CloudType>::correct" + "(" + "typename CloudType::parcelType& , " + "const polyPatch&, " + "bool&, " + "const scalarr, " + "vector&" + ") const" + ); + + return false; +} + + +// ************************************************************************* // diff --git a/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/NoInteraction/NoInteraction.H b/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/NoInteraction/NoInteraction.H new file mode 100644 index 0000000000000000000000000000000000000000..b686bad474597f1d5c0356523ce9682701053b00 --- /dev/null +++ b/src/lagrangian/intermediate/submodels/Kinematic/PatchInteractionModel/NoInteraction/NoInteraction.H @@ -0,0 +1,111 @@ +/*---------------------------------------------------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | + \\ / A nd | Copyright (C) 2008-2010 OpenCFD Ltd. + \\/ 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 <http://www.gnu.org/licenses/>. + +Class + Foam::NoInteraction + +Description + Dummy class for 'none' option - will raise an error if any functions are + called that require return values. + +\*---------------------------------------------------------------------------*/ + +#ifndef NoInteraction_H +#define NoInteraction_H + +#include "PatchInteractionModel.H" + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +namespace Foam +{ +/*---------------------------------------------------------------------------*\ + Class NoInteraction Declaration +\*---------------------------------------------------------------------------*/ + +template<class CloudType> +class NoInteraction +: + public PatchInteractionModel<CloudType> +{ +public: + + //- Runtime type information + TypeName("none"); + + + // Constructors + + //- Construct from dictionary + NoInteraction(const dictionary& dict, CloudType& cloud); + + //- Construct copy + NoInteraction(const NoInteraction<CloudType>& pim); + + //- Construct and return a clone + virtual autoPtr<PatchInteractionModel<CloudType> > clone() const + { + return autoPtr<PatchInteractionModel<CloudType> > + ( + new NoInteraction<CloudType>(*this) + ); + } + + + //- Destructor + virtual ~NoInteraction(); + + + // Member Functions + + //- Flag to indicate whether model activates patch interaction model + virtual bool active() const; + + //- Apply velocity correction + // Returns true if particle remains in same cell + virtual bool correct + ( + typename CloudType::parcelType& p, + const polyPatch& pp, + bool& keepParticle, + const scalar trackFraction, + const tetIndices& tetIs + ) const; +}; + + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +} // End namespace Foam + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#ifdef NoRepository +# include "NoInteraction.C" +#endif + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +#endif + +// ************************************************************************* //