Skip to content
Snippets Groups Projects
controlDict 1.6 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*--------------------------------*- C++ -*----------------------------------*\
    | =========                 |                                                 |
    | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
    
    |  \\    /   O peration     | Version:  v2412                                 |
    
    |   \\  /    A nd           | Website:  www.openfoam.com                      |
    
    |    \\/     M anipulation  |                                                 |
    \*---------------------------------------------------------------------------*/
    FoamFile
    {
        version     2.0;
        format      ascii;
        class       dictionary;
        object      controlDict;
    }
    // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
    
    
    //- To be more comparable to v2406 bug-fix branch disable the
    //- near-wall distance fix (see v2412 release notes about 'Wall distance')
    //OptimisationSwitches
    //{
    //    useCombinedWallPatch    0;
    //}
    
    
    application     simpleFoam;
    
    
    startFrom       startTime;
    
    
    writePrecision  6;
    
    
    writeCompression off;
    
    
    timeFormat      general;
    
    timePrecision   6;
    
    runTimeModifiable true;
    
    functions
    {
    
        #include "streamLines"
    
        #include "wallBoundedStreamLines"
    
        #include "cuttingPlane"
        #include "forceCoeffs"
    
    
        #include "solverInfo"
        #include "graphFunctionObject"
    
        #include "foamReport"
    
    }
    
    
    // ************************************************************************* //