mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
and replaced interDyMFoam with a script which reports this change. The interDyMFoam tutorials have been moved into the interFoam directory. This change is one of a set of developments to merge dynamic mesh functionality into the standard solvers to improve consistency, usability, flexibility and maintainability of these solvers. Henry G. Weller CFD Direct Ltd.
114 lines
2.3 KiB
C++
114 lines
2.3 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 surfaceFeatureExtractDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
vessel.stl
|
|
{
|
|
// How to obtain raw features (extractFromFile || extractFromSurface)
|
|
extractionMethod extractFromSurface;
|
|
|
|
extractFromSurfaceCoeffs
|
|
{
|
|
// Mark edges whose adjacent surface normals are at an angle less
|
|
// than includedAngle as features
|
|
// - 0 : selects no edges
|
|
// - 180: selects all edges
|
|
includedAngle 120;
|
|
}
|
|
|
|
// Write options
|
|
|
|
// Write features to obj format for postprocessing
|
|
writeObj no;
|
|
}
|
|
|
|
gasInlet.stl
|
|
{
|
|
|
|
extractionMethod extractFromSurface;
|
|
|
|
extractFromSurfaceCoeffs
|
|
{
|
|
includedAngle 120;
|
|
}
|
|
|
|
writeObj no;
|
|
}
|
|
|
|
stirrer.stl
|
|
{
|
|
extractionMethod extractFromSurface;
|
|
|
|
extractFromSurfaceCoeffs
|
|
{
|
|
includedAngle 120;
|
|
}
|
|
|
|
writeObj no;
|
|
}
|
|
|
|
outlet.stl
|
|
{
|
|
extractionMethod extractFromSurface;
|
|
|
|
extractFromSurfaceCoeffs
|
|
{
|
|
includedAngle 120;
|
|
}
|
|
|
|
writeObj no;
|
|
}
|
|
|
|
/*
|
|
baffles.stl
|
|
{
|
|
extractionMethod extractFromSurface;
|
|
|
|
extractFromSurfaceCoeffs
|
|
{
|
|
includedAngle 120;
|
|
}
|
|
|
|
writeObj no;
|
|
}
|
|
|
|
rotating.stl
|
|
{
|
|
extractionMethod extractFromSurface;
|
|
|
|
extractFromSurfaceCoeffs
|
|
{
|
|
includedAngle 120;
|
|
}
|
|
|
|
writeObj no;
|
|
}
|
|
|
|
sparger.stl
|
|
{
|
|
extractionMethod extractFromSurface;
|
|
|
|
extractFromSurfaceCoeffs
|
|
{
|
|
includedAngle 120;
|
|
}
|
|
|
|
writeObj no;
|
|
}
|
|
*/
|
|
|
|
|
|
// ************************************************************************* //
|