setRDeltaT.H
Go to the documentation of this file.
1 {
2  volScalarField& rDeltaT = trDeltaT.ref();
3 
4  const dictionary& pimpleDict = pimple.dict();
5 
6  scalar maxCo
7  (
8  pimpleDict.lookupOrDefault<scalar>("maxCo", 0.2)
9  );
10 
11  scalar maxDeltaT
12  (
13  pimpleDict.lookupOrDefault<scalar>("maxDeltaT", GREAT)
14  );
15 
17  (
18  pimpleDict.lookupOrDefault<scalar>("rDeltaTSmoothingCoeff", 0.02)
19  );
20 
21  surfaceScalarField maxPhi("maxPhi", phi);
22 
24  {
26  }
27 
28  // Set the reciprocal time-step from the local Courant number
29  rDeltaT.ref() = max
30  (
31  1/dimensionedScalar("maxDeltaT", dimTime, maxDeltaT),
33  /((2*maxCo)*mesh.V())
34  );
35 
36  // Update tho boundary values of the reciprocal time-step
37  rDeltaT.correctBoundaryConditions();
38 
40 
41  Info<< "Flow time scale min/max = "
42  << gMin(1/rDeltaT.primitiveField())
43  << ", " << gMax(1/rDeltaT.primitiveField()) << endl;
44 }
scalar maxCo(readScalar(pimpleDict.lookup("maxCo")))
surfaceScalarField & phi
scalar maxDeltaT(pimpleDict.lookupOrDefault< scalar >("maxDeltaT", GREAT))
label phasei
Definition: pEqn.H:27
dimensioned< Type > max(const dimensioned< Type > &, const dimensioned< Type > &)
Type gMin(const FieldField< Field, Type > &f)
multiphaseSystem::phaseModelList & phases
Definition: createFields.H:11
const dictionary & pimple
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:253
void smooth(volScalarField &field, const scalar coeff)
Definition: fvcSmooth.C:35
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:52
dynamicFvMesh & mesh
Type gMax(const FieldField< Field, Type > &f)
surfaceScalarField maxPhi("maxPhi", phi)
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
const dimensionSet dimTime(0, 0, 1, 0, 0, 0, 0)
Definition: dimensionSets.H:51
messageStream Info
dimensioned< scalar > mag(const dimensioned< Type > &)
tmp< GeometricField< Type, fvPatchField, volMesh > > surfaceSum(const GeometricField< Type, fvsPatchField, surfaceMesh > &ssf)
GeometricField< scalar, fvsPatchField, surfaceMesh > surfaceScalarField
tmp< volScalarField > trDeltaT
Definition: createRDeltaT.H:3
forAll(phases, phasei)
Definition: setRDeltaT.H:23
scalar rDeltaTSmoothingCoeff(pimpleDict.lookupOrDefault< scalar >("rDeltaTSmoothingCoeff", 0.1))