Info<< "Reading field T\n" << endl;
volScalarField T
(
IOobject
"T",
runTime.timeName(),
mesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
mesh
);
Info<< "Reading field Ts\n" << endl;
volScalarField Ts
"Ts",
// Working coupled solution field
Info<< "Creating field blockT\n" << endl;
volVector2Field blockT
"blockT",
IOobject::NO_READ,
IOobject::NO_WRITE
dimensionedVector2(word(), dimless, vector2::zero)
{
vector2Field& blockX = blockT.internalField();
blockMatrixTools::blockInsert(0, T.internalField(), blockX);
blockMatrixTools::blockInsert(1, Ts.internalField(), blockX);
}
blockT.write();
// Removed comparison with the reference field. HJ, 17/Jun/2010
#if (0)
Info<< "Reading field Tref\n" << endl;
volScalarField Tref
"Tref",
Info<< "Reading field Tsref\n" << endl;
volScalarField Tsref
"Tsref",
#endif
Info<< "Reading field U\n" << endl;
volVectorField U
"U",
Info<< "Reading transportProperties\n" << endl;
IOdictionary transportProperties
"transportProperties",
runTime.constant(),
)
Info<< "Reading diffusivity D\n" << endl;
dimensionedScalar DT
transportProperties.lookup("DT")
dimensionedScalar DTs
transportProperties.lookup("DTs")
dimensionedScalar alpha
transportProperties.lookup("alpha")
# include "createPhi.H"