makeThermoParcelForces.H
Go to the documentation of this file.
1 /*---------------------------------------------------------------------------*\
2  ========= |
3  \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
4  \\ / O peration |
5  \\ / A nd | www.openfoam.com
6  \\/ M anipulation |
7 -------------------------------------------------------------------------------
8  Copyright (C) 2011-2016 OpenFOAM Foundation
9  Copyright (C) 2023-2024 OpenCFD Ltd.
10 -------------------------------------------------------------------------------
11 License
12  This file is part of OpenFOAM.
13 
14  OpenFOAM is free software: you can redistribute it and/or modify it
15  under the terms of the GNU General Public License as published by
16  the Free Software Foundation, either version 3 of the License, or
17  (at your option) any later version.
18 
19  OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
20  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
21  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
22  for more details.
23 
24  You should have received a copy of the GNU General Public License
25  along with OpenFOAM. If not, see <http://www.gnu.org/licenses/>.
26 
27 \*---------------------------------------------------------------------------*/
28 
29 #ifndef makeThermoParcelForces_H
30 #define makeThermoParcelForces_H
31 
32 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
33 
34 #include "SphereDragForce.H"
35 #include "NonSphereDragForce.H"
36 
37 #include "SaffmanMeiLiftForce.H"
38 #include "TomiyamaDragForce.H"
39 #include "TomiyamaLiftForce.H"
40 
41 #include "GravityForce.H"
42 #include "NonInertialFrameForce.H"
43 #include "ParamagneticForce.H"
45 #include "SRFForce.H"
46 #include "VirtualMassForce.H"
47 #include "CoulombForce.H"
48 
49 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
50 
51 #define makeThermoParcelForces(CloudType) \
52  \
53  makeParticleForceModel(CloudType); \
54  makeParticleForceModelType(SphereDragForce, CloudType); \
55  makeParticleForceModelType(NonSphereDragForce, CloudType); \
56  makeParticleForceModelType(SaffmanMeiLiftForce, CloudType); \
57  makeParticleForceModelType(TomiyamaDragForce, CloudType); \
58  makeParticleForceModelType(TomiyamaLiftForce, CloudType); \
59  makeParticleForceModelType(GravityForce, CloudType); \
60  makeParticleForceModelType(NonInertialFrameForce, CloudType); \
61  makeParticleForceModelType(ParamagneticForce, CloudType); \
62  makeParticleForceModelType(PressureGradientForce, CloudType); \
63  makeParticleForceModelType(SRFForce, CloudType); \
64  makeParticleForceModelType(VirtualMassForce, CloudType); \
65  makeParticleForceModelType(CoulombForce, CloudType);
66 
67 
68 // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
69 
70 #endif
71 
72 // ************************************************************************* //