Go to the documentation of this file.00001 PtrList<fvMesh> fluidRegions(rp.fluidRegionNames().size());
00002
00003 forAll(rp.fluidRegionNames(), i)
00004 {
00005 Info<< "Create fluid mesh for region " << rp.fluidRegionNames()[i]
00006 << " for time = " << runTime.timeName() << nl << endl;
00007
00008 fluidRegions.set
00009 (
00010 i,
00011 new fvMesh
00012 (
00013 IOobject
00014 (
00015 rp.fluidRegionNames()[i],
00016 runTime.timeName(),
00017 runTime,
00018 IOobject::MUST_READ
00019 )
00020 )
00021 );
00022 }
00023
00024