initial commit for version 1.5.x patch release
[OpenFOAM-1.5.x.git] / src / lagrangian / solidParticle / solidParticleCloud.C
blob7d6276033140fe199a398ac6377df658fbceac42
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 1991-2008 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 #include "solidParticleCloud.H"
28 #include "fvMesh.H"
29 #include "volFields.H"
30 #include "interpolationCellPoint.H"
31 #include "volPointInterpolation.H"
33 // * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
35 namespace Foam
37     defineParticleTypeNameAndDebug(solidParticle, 0);
40 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
42 Foam::solidParticleCloud::solidParticleCloud(const fvMesh& mesh)
44     Cloud<solidParticle>(mesh),
45     mesh_(mesh),
46     particleProperties_
47     (
48         IOobject
49         (
50             "particleProperties",
51             mesh_.time().constant(),
52             mesh_,
53             IOobject::MUST_READ,
54             IOobject::NO_WRITE
55         )
56     ),
57     rhop_(dimensionedScalar(particleProperties_.lookup("rhop")).value()),
58     e_(dimensionedScalar(particleProperties_.lookup("e")).value()),
59     mu_(dimensionedScalar(particleProperties_.lookup("mu")).value())
63 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
65 void Foam::solidParticleCloud::move(const dimensionedVector& g)
67     const volScalarField& rho = mesh_.lookupObject<const volScalarField>("rho");
68     const volVectorField& U = mesh_.lookupObject<const volVectorField>("U");
69     const volScalarField& nu = mesh_.lookupObject<const volScalarField>("nu");
71     pointMesh pMesh(U.mesh());
72     volPointInterpolation vpi(U.mesh(), pMesh);
74     interpolationCellPoint<scalar> rhoInterp(vpi, rho);
75     interpolationCellPoint<vector> UInterp(vpi, U);
76     interpolationCellPoint<scalar> nuInterp(vpi, nu);
78     solidParticle::trackData td(*this, rhoInterp, UInterp, nuInterp, g.value());
80     Cloud<solidParticle>::move(td);
84 // ************************************************************************* //