Merge branch 'master' into cvm

This commit is contained in:
graham
2010-11-24 18:39:27 +00:00
8 changed files with 15 additions and 12 deletions

View File

@ -158,7 +158,7 @@ int main(int argc, char *argv[])
blockMesh::verbose(true);
IOdictionary meshDict(meshDictIoPtr());
blockMesh blocks(meshDict);
blockMesh blocks(meshDict, regionName);
if (args.optionFound("blockTopology"))

View File

@ -321,7 +321,7 @@ void Foam::vtkPV3blockMesh::updateFoamMesh()
)
);
meshPtr_ = new blockMesh(meshDict);
meshPtr_ = new blockMesh(meshDict, polyMesh::defaultRegion);
}

View File

@ -28,7 +28,7 @@ License
#include "breakupModel.H"
#include "collisionModel.H"
#include "dispersionModel.H"
#include "interpolationCellPoint.H"
#include "interpolation.H"
#include "processorPolyPatch.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View File

@ -24,7 +24,6 @@ License
\*---------------------------------------------------------------------------*/
#include "ThermoCloud.H"
#include "interpolationCellPoint.H"
#include "ThermoParcel.H"
#include "HeatTransferModel.H"

View File

@ -48,7 +48,7 @@ SourceFiles
#include "Particle.H"
#include "IOstream.H"
#include "autoPtr.H"
#include "interpolationCellPoint.H"
#include "interpolation.H"
#include "contiguous.H"
#include "KinematicCloud.H"

View File

@ -32,11 +32,11 @@ bool Foam::blockMesh::blockMesh::verboseOutput(false);
// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
Foam::blockMesh::blockMesh(IOdictionary& dict)
Foam::blockMesh::blockMesh(const IOdictionary& dict, const word& regionName)
:
blockPointField_(dict.lookup("vertices")),
scaleFactor_(1.0),
topologyPtr_(createTopology(dict))
topologyPtr_(createTopology(dict, regionName))
{
calcMergeInfo();
}

View File

@ -128,7 +128,7 @@ class blockMesh
void createCellShapes(cellShapeList& tmpBlockCells);
polyMesh* createTopology(IOdictionary&);
polyMesh* createTopology(const IOdictionary&, const word& regionName);
void checkBlockMesh(const polyMesh&) const;
//- Determine the merge info and the final number of cells/points
@ -149,7 +149,7 @@ public:
// Constructors
//- Construct from IOdictionary
blockMesh(IOdictionary&);
blockMesh(const IOdictionary&, const word& regionName);
//- Destructor

View File

@ -261,7 +261,11 @@ void Foam::blockMesh::createCellShapes
// * * * * * * * * * * * * * Private Member Functions * * * * * * * * * * * //
Foam::polyMesh* Foam::blockMesh::createTopology(IOdictionary& meshDescription)
Foam::polyMesh* Foam::blockMesh::createTopology
(
const IOdictionary& meshDescription,
const word& regionName
)
{
bool topologyOK = true;
@ -514,7 +518,7 @@ Foam::polyMesh* Foam::blockMesh::createTopology(IOdictionary& meshDescription)
(
IOobject
(
"blockMesh",
regionName,
meshDescription.time().constant(),
meshDescription.time(),
IOobject::NO_READ,
@ -563,7 +567,7 @@ Foam::polyMesh* Foam::blockMesh::createTopology(IOdictionary& meshDescription)
(
IOobject
(
"blockMesh",
regionName,
meshDescription.time().constant(),
meshDescription.time(),
IOobject::NO_READ,