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-2023 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  virtual scalar timeEnd() const;
87 
88  //- Number of parcels to introduce relative to SOI
89  virtual label nParcelsToInject(const scalar time0, const scalar time1);
90 
91  //- Parcel mass to introduce relative to SOI
92  virtual scalar massToInject(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  barycentric& coordinates,
104  label& celli,
105  label& tetFacei,
106  label& tetPti,
107  label& facei
108  );
109 
110  virtual void setProperties
111  (
112  const label parcelI,
113  const label nParcels,
114  const scalar time,
115  typename CloudType::parcelType& parcel
116  );
117 
118  //- Flag to identify whether model fully describes the parcel
119  virtual bool fullyDescribed() const;
120 };
121 
122 
123 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
124 
125 } // End namespace Foam
126 
127 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
128 
129 #ifdef NoRepository
130  #include "NoInjection.C"
131 #endif
132 
133 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
134 
135 #endif
136 
137 // ************************************************************************* //
Templated base class for dsmc cloud.
Definition: DSMCCloud.H:79
ParcelType parcelType
Type of parcel the cloud was instantiated for.
Definition: DSMCCloud.H:221
Templated injection model class.
Place holder for 'none' option.
Definition: NoInjection.H:52
virtual ~NoInjection()
Destructor.
Definition: NoInjection.C:53
virtual void setPositionAndCell(const label parcelI, const label nParcels, const scalar time, barycentric &coordinates, label &celli, label &tetFacei, label &tetPti, label &facei)
Set the injection position and owner cell, tetFace and tetPt.
Definition: NoInjection.C:90
TypeName("none")
Runtime type information.
virtual void setProperties(const label parcelI, const label nParcels, const scalar time, typename CloudType::parcelType &parcel)
Set the parcel properties.
Definition: NoInjection.C:105
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
virtual label nParcelsToInject(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:121
virtual scalar timeEnd() const
Return the end-of-injection time.
Definition: NoInjection.C:60
virtual scalar massToInject(const scalar time0, const scalar time1)
Parcel mass to introduce relative to SOI.
Definition: NoInjection.C:79
An auto-pointer similar to the STL auto_ptr but with automatic casting to a reference to the type and...
Definition: autoPtr.H:51
A list of keyword definitions, which are a keyword followed by any number of values (e....
Definition: dictionary.H:160
A class for handling words, derived from string.
Definition: word.H:62
Namespace for OpenFOAM.
intWM_LABEL_SIZE_t label
A label is an int32_t or int64_t as specified by the pre-processor macro WM_LABEL_SIZE.
Definition: label.H:59