Removed unneeded lib dependency from mdInitialise
[foam-extend-3.2.git] / applications / solvers / surfaceTracking / surfactantFoam / createFaFields.H
blob89d8da2f711919b614b4ad0d3c8ea0de62076896
1 Info << "Reading field Cs" << endl;
2 areaScalarField Cs
4     IOobject
5     (
6         "Cs",
7         runTime.timeName(),
8         mesh,
9         IOobject::MUST_READ,
10         IOobject::AUTO_WRITE
11     ),
12     aMesh
15 Info<< "Reading transportProperties\n" << endl;
17 IOdictionary transportProperties
19     IOobject
20     (
21         "transportProperties",
22         runTime.constant(),
23         mesh,
24         IOobject::MUST_READ,
25         IOobject::NO_WRITE
26     )
30 Info<< "Reading diffusivity D\n" << endl;
32 dimensionedScalar Ds
34     transportProperties.lookup("Ds")
37 areaVectorField Us
39     IOobject
40     (
41         "Us",
42         runTime.timeName(),
43         mesh,
44         IOobject::MUST_READ,
45         IOobject::NO_WRITE
46     ),
47     aMesh
51 edgeScalarField phis
53     IOobject
54     (
55         "phis",
56         runTime.timeName(),
57         mesh,
58         IOobject::NO_READ,
59         IOobject::NO_WRITE
60     ),
61     linearEdgeInterpolate(Us) & aMesh.Le()