createFaFields.H
Go to the documentation of this file.
1Info<< "Reading field Cs" << endl;
3(
4 IOobject
5 (
6 "Cs",
7 runTime.timeName(),
8 mesh,
9 IOobject::MUST_READ,
10 IOobject::AUTO_WRITE
11 ),
12 aMesh
13);
14
15Info<< "Reading transportProperties\n" << endl;
16
17IOdictionary transportProperties
18(
19 IOobject
20 (
21 "transportProperties",
22 runTime.constant(),
23 mesh,
24 IOobject::MUST_READ,
25 IOobject::NO_WRITE
26 )
27);
28
29
30Info<< "Reading diffusivity D\n" << endl;
31
32dimensionedScalar Ds("Ds", dimViscosity, transportProperties);
33
35(
36 IOobject
37 (
38 "Us",
39 runTime.timeName(),
40 mesh,
41 IOobject::MUST_READ,
42 IOobject::NO_WRITE
43 ),
44 aMesh
45);
46
47
49(
50 IOobject
51 (
52 "phis",
53 runTime.timeName(),
54 mesh,
55 IOobject::NO_READ,
56 IOobject::NO_WRITE
57 ),
59);
dynamicFvMesh & mesh
engineTime & runTime
dimensioned< scalar > dimensionedScalar
Dimensioned scalar obtained from generic dimensioned type.
tmp< GeometricField< Type, faePatchField, edgeMesh > > linearEdgeInterpolate(const GeometricField< Type, faPatchField, areaMesh > &vf)
messageStream Info
Information stream (stdout output on master, null elsewhere)
Ostream & endl(Ostream &os)
Add newline and flush stream.
Definition: Ostream.H:372
GeometricField< vector, faPatchField, areaMesh > areaVectorField
Definition: areaFieldsFwd.H:79
GeometricField< scalar, faePatchField, edgeMesh > edgeScalarField
Definition: edgeFieldsFwd.H:63
GeometricField< scalar, faPatchField, areaMesh > areaScalarField
Definition: areaFieldsFwd.H:78
const scalarField & Cs
IOdictionary transportProperties(IOobject("transportProperties", runTime.constant(), mesh, IOobject::MUST_READ, IOobject::NO_WRITE))
edgeScalarField phis(IOobject("phis", runTime.timeName(), mesh, IOobject::NO_READ, IOobject::NO_WRITE), linearEdgeInterpolate(Us) &aMesh.Le())
Us
faMesh aMesh(mesh)