This repository has been archived on 2023-11-20. You can view files and clone it, but cannot push or open issues or pull requests.
foam-extend4.1-coherent-io/applications/solvers/coupled/conjugateHeatSimpleFoam/createSolidFields.H
2016-04-20 12:55:08 +01:00

30 lines
658 B
C++

Info<< "Reading field Tsolid\n" << endl;
volScalarField Tsolid
(
IOobject
(
"T",
runTime.timeName(),
solidMesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
solidMesh
);
Info<< "Reading solid thermal properties" << endl;
thermalModel solidThermo(Tsolid);
Info<< "Reading solid diffusivity k\n" << endl;
volScalarField kSolid
(
IOobject
(
"k",
runTime.timeName(),
solidMesh,
IOobject::MUST_READ,
IOobject::AUTO_WRITE
),
solidMesh
);