NoInjection.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration | Website: https://openfoam.org
5  \\ / A nd | Copyright (C) 2011-2020 OpenFOAM Foundation
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8 License
9  This file is part of OpenFOAM.
10 
11  OpenFOAM is free software: you can redistribute it and/or modify it
12  under the terms of the GNU General Public License as published by
13  the Free Software Foundation, either version 3 of the License, or
14  (at your option) any later version.
15 
16  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
17  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
18  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
19  for more details.
20 
21  You should have received a copy of the GNU General Public License
22  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
23 
24 Class
25  Foam::NoInjection
26 
27 Description
28  Place holder for 'none' option
29 
30 SourceFiles
31  NoInjection.C
32 
33 \*---------------------------------------------------------------------------*/
34 
35 #ifndef NoInjection_H
36 #define NoInjection_H
37 
38 #include "InjectionModel.H"
39 
40 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
41 
42 namespace Foam
43 {
44 
45 /*---------------------------------------------------------------------------*\
46  Class NoInjection Declaration
47 \*---------------------------------------------------------------------------*/
48 
49 template<class CloudType>
50 class NoInjection
51 :
52  public InjectionModel<CloudType>
53 {
54 
55 public:
56 
57  //- Runtime type information
58  TypeName("none");
59 
60 
61  // Constructors
62 
63  //- Construct from components
64  NoInjection(const dictionary&, CloudType&, const word&);
65 
66  //- Construct copy
68 
69  //- Construct and return a clone
71  {
73  (
74  new NoInjection<CloudType>(*this)
75  );
76  }
77 
78 
79  //- Destructor
80  virtual ~NoInjection();
81 
82 
83  // Member Functions
84 
85  //- Return the end-of-injection time
86  scalar timeEnd() const;
87 
88  //- Number of parcels to introduce relative to SOI
89  virtual label parcelsToInject(const scalar time0, const scalar time1);
90 
91  //- Volume of parcels to introduce relative to SOI
92  virtual scalar volumeToInject(const scalar time0, const scalar time1);
93 
94 
95  // Injection geometry
96 
97  //- Set the injection position and owner cell, tetFace and tetPt
98  virtual void setPositionAndCell
99  (
100  const label parcelI,
101  const label nParcels,
102  const scalar time,
103  vector& position,
104  label& cellOwner,
105  label& tetFacei,
106  label& tetPti
107  );
108 
109  virtual void setProperties
110  (
111  const label parcelI,
112  const label nParcels,
113  const scalar time,
114  typename CloudType::parcelType& parcel
115  );
116 
117  //- Flag to identify whether model fully describes the parcel
118  virtual bool fullyDescribed() const;
119 
120  //- Return flag to identify whether or not injection of parcelI is
121  // permitted
122  virtual bool validInjection(const label parcelI);
123 };
124 
125 
126 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
127 
128 } // End namespace Foam
129 
130 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
131 
132 #ifdef NoRepository
133  #include "NoInjection.C"
134 #endif
135 
136 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
137 
138 #endif
139 
140 // ************************************************************************* //
virtual bool validInjection(const label parcelI)
Return flag to identify whether or not injection of parcelI is.
Definition: NoInjection.C:127
A list of keyword definitions, which are a keyword followed by any number of values (e...
Definition: dictionary.H:156
virtual void setProperties(const label parcelI, const label nParcels, const scalar time, typename CloudType::parcelType &parcel)
Set the parcel properties.
Definition: NoInjection.C:104
TypeName("none")
Runtime type information.
Templated injection model class.
virtual autoPtr< InjectionModel< CloudType > > clone() const
Construct and return a clone.
Definition: NoInjection.H:69
NoInjection(const dictionary &, CloudType &, const word &)
Construct from components.
Definition: NoInjection.C:33
A class for handling words, derived from string.
Definition: word.H:59
virtual scalar volumeToInject(const scalar time0, const scalar time1)
Volume of parcels to introduce relative to SOI.
Definition: NoInjection.C:79
ParcelType parcelType
Type of parcel the cloud was instantiated for.
Definition: DSMCCloud.H:221
scalar timeEnd() const
Return the end-of-injection time.
Definition: NoInjection.C:60
virtual void setPositionAndCell(const label parcelI, const label nParcels, const scalar time, vector &position, label &cellOwner, label &tetFacei, label &tetPti)
Set the injection position and owner cell, tetFace and tetPt.
Definition: NoInjection.C:90
Place holder for &#39;none&#39; option.
Definition: NoInjection.H:49
virtual label parcelsToInject(const scalar time0, const scalar time1)
Number of parcels to introduce relative to SOI.
Definition: NoInjection.C:68
virtual bool fullyDescribed() const
Flag to identify whether model fully describes the parcel.
Definition: NoInjection.C:120
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: PtrList.H:52
virtual ~NoInjection()
Destructor.
Definition: NoInjection.C:53
Templated base class for dsmc cloud.
Definition: DSMCCloud.H:75
Namespace for OpenFOAM.