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. interMixingFoam, multiphaseInterFoam: Updated for changes to interFoam
95 lines
2.0 KiB
C++
95 lines
2.0 KiB
C++
/*--------------------------------*- C++ -*----------------------------------*\
|
|
| ========= | |
|
|
| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox |
|
|
| \\ / O peration | Version: plus |
|
|
| \\ / A nd | Web: www.OpenFOAM.com |
|
|
| \\/ M anipulation | |
|
|
\*---------------------------------------------------------------------------*/
|
|
FoamFile
|
|
{
|
|
version 2.0;
|
|
format ascii;
|
|
class dictionary;
|
|
object surfaceFeatureExtractDict;
|
|
}
|
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
|
|
|
// includedAngle:
|
|
// Mark edges whose adjacent surface normals are at an angle less
|
|
// than includedAngle as features
|
|
// - 0 : selects no edges
|
|
// - 180: selects all edges
|
|
|
|
vessel.stl
|
|
{
|
|
// How to obtain raw features (extractFromFile || extractFromSurface)
|
|
extractionMethod extractFromSurface;
|
|
|
|
includedAngle 120;
|
|
|
|
// Write options
|
|
|
|
// Write features to obj format for postprocessing
|
|
writeObj no;
|
|
}
|
|
|
|
gasInlet.stl
|
|
{
|
|
|
|
extractionMethod extractFromSurface;
|
|
|
|
includedAngle 120;
|
|
|
|
writeObj no;
|
|
}
|
|
|
|
stirrer.stl
|
|
{
|
|
extractionMethod extractFromSurface;
|
|
|
|
includedAngle 120;
|
|
|
|
writeObj no;
|
|
}
|
|
|
|
outlet.stl
|
|
{
|
|
extractionMethod extractFromSurface;
|
|
|
|
includedAngle 120;
|
|
|
|
writeObj no;
|
|
}
|
|
|
|
/*
|
|
baffles.stl
|
|
{
|
|
extractionMethod extractFromSurface;
|
|
|
|
includedAngle 120;
|
|
|
|
writeObj no;
|
|
}
|
|
|
|
rotating.stl
|
|
{
|
|
extractionMethod extractFromSurface;
|
|
|
|
includedAngle 120;
|
|
|
|
writeObj no;
|
|
}
|
|
|
|
sparger.stl
|
|
{
|
|
extractionMethod extractFromSurface;
|
|
|
|
includedAngle 120;
|
|
|
|
writeObj no;
|
|
}
|
|
*/
|
|
|
|
|
|
// ************************************************************************* //
|