mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
13 lines
433 B
C
13 lines
433 B
C
// Initialise solid field pointer lists
|
|
PtrList<basicSolidThermo> thermos(solidRegions.size());
|
|
|
|
// Populate solid field pointer lists
|
|
forAll(solidRegions, i)
|
|
{
|
|
Info<< "*** Reading solid mesh thermophysical properties for region "
|
|
<< solidRegions[i].name() << nl << endl;
|
|
|
|
Info<< " Adding to thermos\n" << endl;
|
|
thermos.set(i, basicSolidThermo::New(solidRegions[i]));
|
|
}
|