ENH: Time: access to libs
[OpenFOAM-2.0.x.git] / applications / solvers / heatTransfer / chtMultiRegionFoam / solid / createSolidFields.H
blob837305659e6c088fa7048bb0e174a6da57fc418c
1     // Initialise solid field pointer lists
2     PtrList<basicSolidThermo> thermos(solidRegions.size());
4     // Populate solid field pointer lists
5     forAll(solidRegions, i)
6     {
7         Info<< "*** Reading solid mesh thermophysical properties for region "
8             << solidRegions[i].name() << nl << endl;
10         Info<< "    Adding to thermos\n" << endl;
11         thermos.set(i, basicSolidThermo::New(solidRegions[i]));
12     }