/*--------------------------------*- 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; } */ // ************************************************************************* //