initial commit for version 1.6.x patch release
[OpenFOAM-1.6.x.git] / src / lagrangian / solidParticle / solidParticleI.H
blob8c284a50cbab3bb6ff4dabb94d49cf5775c91926
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2009 OpenCFD Ltd.
6      \\/     M anipulation  |
7 -------------------------------------------------------------------------------
8 License
9     This file is part of OpenFOAM.
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 the
13     Free Software Foundation; either version 2 of the License, or (at your
14     option) any later version.
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.
21     You should have received a copy of the GNU General Public License
22     along with OpenFOAM; if not, write to the Free Software Foundation,
23     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
25 \*---------------------------------------------------------------------------*/
27 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
29 inline Foam::solidParticle::trackData::trackData
31     solidParticleCloud& spc,
32     const interpolationCellPoint<scalar>& rhoInterp,
33     const interpolationCellPoint<vector>& UInterp,
34     const interpolationCellPoint<scalar>& nuInterp,
35     const vector& g
38     spc_(spc),
39     rhoInterp_(rhoInterp),
40     UInterp_(UInterp),
41     nuInterp_(nuInterp),
42     g_(g)
46 inline Foam::solidParticle::solidParticle
48     const Cloud<solidParticle>& c,
49     const vector& position,
50     const label celli,
51     const scalar d,
52     const vector& U
55     Particle<solidParticle>(c, position, celli),
56     d_(d),
57     U_(U)
61 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
63 inline Foam::solidParticleCloud& Foam::solidParticle::trackData::spc()
65     return spc_;
68 inline const Foam::interpolationCellPoint<Foam::scalar>&
69 Foam::solidParticle::trackData::rhoInterp() const
71     return rhoInterp_;
74 inline const Foam::interpolationCellPoint<Foam::vector>&
75 Foam::solidParticle::trackData::UInterp() const
77     return UInterp_;
80 inline const Foam::interpolationCellPoint<Foam::scalar>&
81 Foam::solidParticle::trackData::nuInterp() const
83     return nuInterp_;
86 inline const Foam::vector& Foam::solidParticle::trackData::g() const
88     return g_;
92 inline Foam::scalar Foam::solidParticle::d() const
94     return d_;
97 inline Foam::scalar Foam::solidParticle::wallImpactDistance(const vector&) const
99     return 0.5*d_;
102 inline const Foam::vector& Foam::solidParticle::U() const
104     return U_;
108 // ************************************************************************* //