solidParticleI.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-2022 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 \*---------------------------------------------------------------------------*/
25 
26 #include "solidParticle.H"
27 
28 // * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
29 
31 (
32  const solidParticleCloud& spc,
33  const interpolationCellPoint<scalar>& rhoInterp,
34  const interpolationCellPoint<vector>& UInterp,
35  const interpolationCellPoint<scalar>& nuInterp,
36  const vector& g
37 )
38 :
39  particle::trackingData(spc),
40  rhoInterp_(rhoInterp),
41  UInterp_(UInterp),
42  nuInterp_(nuInterp),
43  g_(g)
44 {}
45 
46 
47 // * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
48 
51 {
52  return rhoInterp_;
53 }
54 
55 
58 {
59  return UInterp_;
60 }
61 
62 
65 {
66  return nuInterp_;
67 }
68 
70 {
71  return g_;
72 }
73 
74 
75 inline Foam::scalar Foam::solidParticle::d() const
76 {
77  return d_;
78 }
79 
80 
81 inline const Foam::vector& Foam::solidParticle::U() const
82 {
83  return U_;
84 }
85 
86 
87 // ************************************************************************* //
Base particle class.
Definition: particle.H:83
A Cloud of solid particles.
Class used to pass tracking data to the trackToFace function.
Definition: solidParticle.H:91
const interpolationCellPoint< scalar > & rhoInterp() const
const interpolationCellPoint< vector > & UInterp() const
const interpolationCellPoint< scalar > & nuInterp() const
trackingData(const solidParticleCloud &spc, const interpolationCellPoint< scalar > &rhoInterp, const interpolationCellPoint< vector > &UInterp, const interpolationCellPoint< scalar > &nuInterp, const vector &g)
const vector & U() const
Return velocity.
scalar d() const
Return diameter.