BUG: UListIO: byteSize overflowing on really big faceLists
[OpenFOAM-2.0.x.git] / src / lagrangian / spray / submodels / StochasticCollision / NoStochasticCollision / NoStochasticCollision.C
blob024ccd313fdaf56e757076d04a61c46bd97c86bd
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2011 OpenFOAM Foundation
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
13     the Free Software Foundation, either version 3 of the License, or
14     (at your 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, see <http://www.gnu.org/licenses/>.
24 \*---------------------------------------------------------------------------*/
26 #include "NoStochasticCollision.H"
28 // * * * * * * * * * * * * * * * * Constructors  * * * * * * * * * * * * * * //
30 template<class CloudType>
31 Foam::NoStochasticCollision<CloudType>::NoStochasticCollision
33     const dictionary& dict,
34     CloudType& owner
37     StochasticCollisionModel<CloudType>(owner)
41 template<class CloudType>
42 Foam::NoStochasticCollision<CloudType>::NoStochasticCollision
44     const NoStochasticCollision<CloudType>& cm
47     StochasticCollisionModel<CloudType>(cm)
51 // * * * * * * * * * * * * * * * * Destructor  * * * * * * * * * * * * * * * //
53 template<class CloudType>
54 Foam::NoStochasticCollision<CloudType>::~NoStochasticCollision()
58 // * * * * * * * * * * * * * * * Member Functions  * * * * * * * * * * * * * //
60 template<class CloudType>
61 bool Foam::NoStochasticCollision<CloudType>::active() const
63     return false;
67 template<class CloudType>
68 bool Foam::NoStochasticCollision<CloudType>::update
70     const scalar dt,
71     cachedRandom& rndGen,
72     vector& pos1,
73     scalar& m1,
74     scalar& d1,
75     scalar& N1,
76     vector& U,
77     scalar& rho1,
78     scalar& T1,
79     scalarField& Y1,
80     const scalar sigma1,
81     const label celli,
82     const scalar voli,
83     vector& pos2,
84     scalar& m2,
85     scalar& d2,
86     scalar& N2,
87     vector& U2,
88     scalar& rho2,
89     scalar& T2,
90     scalarField& Y2,
91     const scalar sigma2,
92     const label cellj,
93     const scalar volj
94 ) const
96     return false;
100 // ************************************************************************* //