Initial commit for version 2.0.x patch release
[OpenFOAM-2.0.x.git] / applications / solvers / lagrangian / LTSReactingParcelFoam / timeScales.H
blobe6d0fa85c4919cb322b30620c2850d408fb0fb8f
1 /*---------------------------------------------------------------------------*\
2   =========                 |
3   \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
4    \\    /   O peration     |
5     \\  /    A nd           | Copyright (C) 2010-2011 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
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 Info<< "Time scales min/max:" << endl;
30     // Cache old time scale field
31     tmp<volScalarField> trDeltaT
32     (
33         new volScalarField
34         (
35             IOobject
36             (
37                 "rDeltaT0",
38                 runTime.timeName(),
39                 mesh,
40                 IOobject::NO_READ,
41                 IOobject::NO_WRITE,
42                 false
43             ),
44             rDeltaT
45         )
46     );
47     const volScalarField& rDeltaT0 = trDeltaT();
50     // Flow time scale
51     // ~~~~~~~~~~~~~~~
52     {
53         rDeltaT =
54             fvc::surfaceSum
55             (
56                 mag(phi)*mesh.deltaCoeffs()/(maxCo*mesh.magSf())
57             )
58            /rho;
60         rDeltaT.max(1.0/maxDeltaT);
62         Info<< "    Flow        = "
63             << gMin(1/rDeltaT.internalField()) << ", "
64             << gMax(1/rDeltaT.internalField()) << endl;
65     }
68     // Temperature source time scale
69     // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
71     {
72         scalarField tau
73         (
74             runTime.deltaTValue()
75            *mag
76             (
77                 DpDt
78               + parcels.hsTrans()/(mesh.V()*runTime.deltaT())
79               + energySource.Su()
80               + chemistrySh
81             )
82            /rho
83         );
85         tau = alphaTemp*thermo.Cp()*T/(tau + ROOTVSMALL);
87         Info<< "    Temperature = " << min(maxDeltaT, gMin(tau)) << ", "
88             << min(maxDeltaT, gMax(tau)) << endl;
90         rDeltaT.internalField() = max(rDeltaT.internalField(), 1/tau);
91     }
94     // Limit rate of change of time scale
95     // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
96     // - reduce as much as required for flow, but limit source contributions
97     const dimensionedScalar deltaTRamp("deltaTRamp", dimless, 1/(1 + 0.2));
98     rDeltaT = max(rDeltaT, rDeltaT0*deltaTRamp);
101     // Limit the largest time scale
102     // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
103     rDeltaT.max(1/maxDeltaT);
106     // Spatially smooth the time scale field
107     // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
108     fvc::smooth(rDeltaT, rDeltaTSmoothingCoeff);
110     Info<< "    Overall     = " << min(1/rDeltaT).value()
111         << ", " << max(1/rDeltaT).value() << nl << endl;
115 // ************************************************************************* //