Update of cfMesh-v1.0.1 + changes from Hrvoje Jasak

This commit is contained in:
Franjo Juretic 2014-12-03 11:35:24 +01:00 committed by Dominik Christ
parent fee6383c54
commit ba2bb602ef
17 changed files with 33 additions and 11 deletions

View file

@ -35,6 +35,8 @@ SourceFiles
#ifndef boundaryLayers_H
#define boundaryLayers_H
#include "objectRegistry.H"
#include "Time.H"
#include "polyMeshGenModifier.H"
#include "meshSurfaceEngine.H"
#include "meshSurfacePartitioner.H"

View file

@ -36,6 +36,8 @@ SourceFiles
#ifndef extrudeLayer_H
#define extrudeLayer_H
#include "objectRegistry.H"
#include "Time.H"
#include "polyMeshGenModifier.H"
#include "VRWGraphList.H"
#include "labelPair.H"

View file

@ -36,6 +36,8 @@ SourceFiles
#ifndef refineBoundaryLayers_H
#define refineBoundaryLayers_H
#include "objectRegistry.H"
#include "Time.H"
#include "polyMeshGenModifier.H"
#include "meshSurfaceEngine.H"
#include "DynList.H"

View file

@ -866,14 +866,19 @@ void checkMeshDict::updateBoundaryLayers
const std::map<word, wordList>::const_iterator it =
patchesFromPatch.find(pName);
const wordList& newNames = it->second;
forAll(newNames, i)
//- patch name may be a regex
if( it != patchesFromPatch.end() )
{
patchBndLayers.add(newNames[i], dict);
}
const wordList& newNames = it->second;
patchBndLayers.remove(pName);
forAll(newNames, i)
{
patchBndLayers.add(newNames[i], dict);
}
patchBndLayers.remove(pName);
}
}
}
}

View file

@ -35,6 +35,8 @@ SourceFiles
#ifndef checkMeshDict_H
#define checkMeshDict_H
#include "objectRegistry.H"
#include "Time.H"
#include "IOdictionary.H"
#include <map>

View file

@ -27,8 +27,6 @@ License
#include "Ostream.H"
#include "token.H"
#include "Time.H"
// * * * * * * * * * * * * * * * IOstream Operators * * * * * * * * * * * * //
template<class T, Foam::label Offset>

View file

@ -42,6 +42,7 @@ SourceFiles
#include "label.H"
#include "bool.H"
#include "IOstreams.H"
#include "error.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View file

@ -37,6 +37,7 @@ SourceFiles
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "objectRegistry.H"
#include "Time.H"
#include "meshSubset.H"
#include "pointFieldPMG.H"

View file

@ -29,10 +29,7 @@ Description
#include "demandDrivenData.H"
#include "IFstream.H"
#include "OFstream.H"
#include "Time.H"
#include "gzstream.h"
#include "triSurface.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View file

@ -37,6 +37,7 @@ SourceFiles
#define meshOctreeAutomaticRefinement_H
#include "meshOctreeModifier.H"
#include "IOdictionary.H"
//#include "volFields.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View file

@ -37,6 +37,7 @@ SourceFiles
#include "boolList.H"
#include "DynList.H"
#include "IOdictionary.H"
#include "meshOctreeModifier.H"
//#include "volFields.H"
#include "patchRefinementList.H"
@ -49,7 +50,6 @@ namespace Foam
{
// Forward declarations
class IOdictionary;
class meshOctreeCube;
/*---------------------------------------------------------------------------*\

View file

@ -26,6 +26,8 @@ Description
\*---------------------------------------------------------------------------*/
#include "error.H"
#include "objectRegistry.H"
#include "Time.H"
#include "polyMeshGenModifier.H"
#include "edgeExtractor.H"
#include "meshSurfaceEngine.H"

View file

@ -38,6 +38,8 @@ SourceFiles
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
#include "objectRegistry.H"
#include "Time.H"
#include "labelList.H"
#include "labelLongList.H"
#include "VRWGraph.H"

View file

@ -37,6 +37,8 @@ SourceFiles
#ifndef meshSurfaceCheckEdgeTypes_H
#define meshSurfaceCheckEdgeTypes_H
#include "objectRegistry.H"
#include "Time.H"
#include "polyMeshGenModifier.H"
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

View file

@ -37,6 +37,8 @@ SourceFiles
#ifndef meshSurfaceCheckInvertedVertices_H
#define meshSurfaceCheckInvertedVertices_H
#include "objectRegistry.H"
#include "Time.H"
#include "polyMeshGenModifier.H"
#include "HashSet.H"

View file

@ -35,6 +35,8 @@ SourceFiles
#ifndef meshSurfaceEngine_H
#define meshSurfaceEngine_H
#include "objectRegistry.H"
#include "Time.H"
#include "polyMeshGenModifier.H"
#include "SubList.H"
#include "boolList.H"

View file

@ -37,6 +37,7 @@ SourceFiles
#ifndef triSurfacePatchManipulator_H
#define triSurfacePatchManipulator_H
#include "IOdictionary.H"
#include "triSurf.H"
#include "VRWGraph.H"