Loading...
Searching...
No Matches
makeParcelForces.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-------------------------------------------------------------------------------
11License
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 makeParcelForces_H
30#define makeParcelForces_H
31
32// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
33
34#include "SphereDragForce.H"
35#include "NonSphereDragForce.H"
36#include "WenYuDragForce.H"
37#include "ErgunWenYuDragForce.H"
39
40#include "SaffmanMeiLiftForce.H"
41#include "TomiyamaDragForce.H"
42#include "TomiyamaLiftForce.H"
43
44#include "GravityForce.H"
46#include "ParamagneticForce.H"
48#include "SRFForce.H"
49#include "VirtualMassForce.H"
50#include "InterfaceForce.H"
51#include "CoulombForce.H"
52
53// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
54
55#define makeParcelForces(CloudType) \
56 \
57 makeParticleForceModel(CloudType); \
58 makeParticleForceModelType(SphereDragForce, CloudType); \
59 makeParticleForceModelType(NonSphereDragForce, CloudType); \
60 makeParticleForceModelType(WenYuDragForce, CloudType); \
61 makeParticleForceModelType(ErgunWenYuDragForce, CloudType); \
62 makeParticleForceModelType(PlessisMasliyahDragForce, CloudType); \
63 makeParticleForceModelType(SaffmanMeiLiftForce, CloudType); \
64 makeParticleForceModelType(TomiyamaDragForce, CloudType); \
65 makeParticleForceModelType(TomiyamaLiftForce, CloudType); \
66 makeParticleForceModelType(GravityForce, CloudType); \
67 makeParticleForceModelType(NonInertialFrameForce, CloudType); \
68 makeParticleForceModelType(ParamagneticForce, CloudType); \
69 makeParticleForceModelType(PressureGradientForce, CloudType); \
70 makeParticleForceModelType(SRFForce, CloudType); \
71 makeParticleForceModelType(VirtualMassForce, CloudType); \
72 makeParticleForceModelType(InterfaceForce, CloudType); \
73 makeParticleForceModelType(CoulombForce, CloudType);
74
75// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
76
77#endif
78
79// ************************************************************************* //