mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
Description
Specify an etc file to include when reading dictionaries, expects a
single string to follow.
Searches for files from user/group/shipped directories.
The search scheme allows for version-specific and
version-independent files using the following hierarchy:
- \b user settings:
- ~/.OpenFOAM/\<VERSION\>
- ~/.OpenFOAM/
- \b group (site) settings (when $WM_PROJECT_SITE is set):
- $WM_PROJECT_SITE/\<VERSION\>
- $WM_PROJECT_SITE
- \b group (site) settings (when $WM_PROJECT_SITE is not set):
- $WM_PROJECT_INST_DIR/site/\<VERSION\>
- $WM_PROJECT_INST_DIR/site/
- \b other (shipped) settings:
- $WM_PROJECT_DIR/etc/
An example of the \c \#includeEtc directive:
\verbatim
#includeEtc "etcFile"
\endverbatim
The usual expansion of environment variables and other constructs is
retained.
179 lines
4.5 KiB
C++
179 lines
4.5 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: dev |
|
|
| \\ / A nd | Web: www.OpenFOAM.org |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object foamyHexMeshDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// Include defaults parameters from master dictionary
|
|
#includeEtc "caseDicts/foamyHexMeshDict"
|
|
|
|
// Any scalar with a name <name>Coeff specifies a value that will be implemented
|
|
// as a faction of the target cell size
|
|
|
|
geometry
|
|
{
|
|
#include "meshDict.geometry"
|
|
}
|
|
|
|
|
|
initialPoints
|
|
{
|
|
initialPointsMethod autoDensity;
|
|
|
|
autoDensityCoeffs
|
|
{
|
|
minLevels 2;
|
|
maxSizeRatio 3.0;
|
|
sampleResolution 4;
|
|
surfaceSampleResolution 5;
|
|
}
|
|
}
|
|
|
|
|
|
surfaceConformation
|
|
{
|
|
locationInMesh (0 0 0);
|
|
|
|
geometryToConformTo
|
|
{
|
|
flange
|
|
{
|
|
featureMethod extractFeatures;
|
|
includedAngle 140;
|
|
|
|
regions
|
|
{
|
|
patch1
|
|
{
|
|
patchInfo
|
|
{
|
|
type wall;
|
|
inGroups (groupFlange groupWalls);
|
|
}
|
|
}
|
|
|
|
patch2
|
|
{
|
|
patchInfo
|
|
{
|
|
type wall;
|
|
inGroups (groupFlange groupWalls);
|
|
}
|
|
}
|
|
|
|
patch3
|
|
{
|
|
patchInfo
|
|
{
|
|
type wall;
|
|
inGroups (groupFlange);
|
|
}
|
|
}
|
|
|
|
patch4
|
|
{
|
|
patchInfo
|
|
{
|
|
type patch;
|
|
inGroups (groupFlange);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
motionControl
|
|
{
|
|
defaultCellSize 0.0008;
|
|
|
|
minimumCellSizeCoeff 0;
|
|
|
|
maxSmoothingIterations 100;
|
|
|
|
maxRefinementIterations 0;
|
|
|
|
shapeControlFunctions
|
|
{
|
|
flange
|
|
{
|
|
type searchableSurfaceControl;
|
|
priority 1;
|
|
mode inside;
|
|
surfaceCellSizeFunction uniformValue;
|
|
uniformValueCoeffs
|
|
{
|
|
surfaceCellSizeCoeff 1;
|
|
}
|
|
cellSizeFunction surfaceOffsetLinearDistance;
|
|
surfaceOffsetLinearDistanceCoeffs
|
|
{
|
|
distanceCellSizeCoeff 1;
|
|
surfaceOffsetCoeff 2.5;
|
|
linearDistanceCoeff 2.5;
|
|
}
|
|
|
|
regions
|
|
{
|
|
patch3
|
|
{
|
|
type searchableSurfaceControl;
|
|
priority 2;
|
|
mode inside;
|
|
surfaceCellSizeFunction uniformValue;
|
|
uniformValueCoeffs
|
|
{
|
|
surfaceCellSizeCoeff 0.25;
|
|
}
|
|
cellSizeFunction surfaceOffsetLinearDistance;
|
|
surfaceOffsetLinearDistanceCoeffs
|
|
{
|
|
distanceCellSizeCoeff 1;
|
|
surfaceOffsetCoeff 2;
|
|
linearDistanceCoeff 2;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
adaptiveLinearCoeffs
|
|
{
|
|
relaxationStart 1.0;
|
|
relaxationEnd 0.0;
|
|
}
|
|
|
|
objOutput no;
|
|
|
|
timeChecks no;
|
|
}
|
|
|
|
|
|
backgroundMeshDecomposition
|
|
{
|
|
minLevels 1;
|
|
sampleResolution 4;
|
|
spanScale 5;
|
|
maxCellWeightCoeff 10;
|
|
}
|
|
|
|
|
|
meshQualityControls
|
|
{
|
|
#include "meshQualityDict"
|
|
}
|
|
|
|
|
|
// ************************************************************************* //
|