setRDeltaT.H
Go to the documentation of this file.
1 {
2  volScalarField& rDeltaT = trDeltaT();
3 
5  (
6  runTime.controlDict().lookupOrDefault<scalar>
7  (
8  "rDeltaTSmoothingCoeff",
9  0.02
10  )
11  );
12 
13  // Set the reciprocal time-step from the local Courant number
14  rDeltaT.dimensionedInternalField() = max
15  (
16  1/dimensionedScalar("maxDeltaT", dimTime, maxDeltaT),
18  /((2*maxCo)*mesh.V())
19  );
20 
21  // Update tho boundary values of the reciprocal time-step
22  rDeltaT.correctBoundaryConditions();
23 
25 
26  Info<< "Flow time scale min/max = "
27  << gMin(1/rDeltaT.internalField())
28  << ", " << gMax(1/rDeltaT.internalField()) << endl;
29 }
Foam::fvc::surfaceSum
tmp< GeometricField< Type, fvPatchField, volMesh > > surfaceSum(const GeometricField< Type, fvsPatchField, surfaceMesh > &ssf)
Definition: fvcSurfaceIntegrate.C:138
phi1
surfaceScalarField & phi1
Definition: createFields.H:19
dimensionedInternalField
rDeltaT dimensionedInternalField()
Foam::endl
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:251
Foam::mag
dimensioned< scalar > mag(const dimensioned< Type > &)
phi2
surfaceScalarField & phi2
Definition: createFields.H:24
rDeltaTSmoothingCoeff
scalar rDeltaTSmoothingCoeff(pimpleDict.lookupOrDefault< scalar >("rDeltaTSmoothingCoeff", 0.1))
Foam::dimTime
const dimensionSet dimTime(0, 0, 1, 0, 0, 0, 0)
Definition: dimensionSets.H:51
Foam::Info
messageStream Info
maxCo
scalar maxCo(readScalar(pimpleDict.lookup("maxCo")))
Foam::dimensionedScalar
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
Definition: dimensionedScalarFwd.H:41
Foam::volScalarField
GeometricField< scalar, fvPatchField, volMesh > volScalarField
Definition: volFieldsFwd.H:52
mesh
dynamicFvMesh & mesh
Definition: createDynamicFvMesh.H:18
maxDeltaT
scalar maxDeltaT(pimpleDict.lookupOrDefault< scalar >("maxDeltaT", GREAT))
Foam::max
dimensioned< Type > max(const dimensioned< Type > &, const dimensioned< Type > &)
trDeltaT
tmp< volScalarField > trDeltaT
Definition: createRDeltaT.H:3
Foam::gMin
Type gMin(const FieldField< Field, Type > &f)
Definition: FieldFieldFunctions.C:563
Foam::gMax
Type gMax(const FieldField< Field, Type > &f)
Definition: FieldFieldFunctions.C:562
Foam::fvc::smooth
void smooth(volScalarField &field, const scalar coeff)
Definition: fvcSmooth.C:35