Skip to content
Snippets Groups Projects
controlDict 1.89 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*--------------------------------*- C++ -*----------------------------------*\
    
    | =========                 |                                                 |
    | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
    
    henry's avatar
    henry committed
    |  \\    /   O peration     | Version:  1.6                                   |
    
    |   \\  /    A nd           | Web:      http://www.OpenFOAM.org               |
    
    |    \\/     M anipulation  |                                                 |
    \*---------------------------------------------------------------------------*/
    FoamFile
    {
    
        version     2.0;
        format      ascii;
        class       dictionary;
        object      controlDict;
    
    }
    // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
    
    
    application     XXX;
    
    
    startFrom       latestTime;
    
    startTime       0;
    
    stopAt          endTime;
    
    endTime         0.1;
    
    deltaT          1e-05;
    
    writeControl    timeStep;
    
    writeInterval   10;
    
    purgeWrite      0;
    
    writeFormat     ascii;
    
    writePrecision  6;
    
    
    
    timeFormat      general;
    
    timePrecision   6;
    
    
        fieldAverage1
        {
            // Type of functionObject
    
    
            // Where to load it from (if not already in solver)
            functionObjectLibs ("libfieldAverage.so");
    
    
            // Function object enabled flag
    
    
            // When to output the average fields
    
            outputControl   outputTime;
    
            // Fields to be averaged - runTime modifiable
    
                    mean        on;
                    prime2Mean  on;
                    base        time;
    
                    mean        on;
                    prime2Mean  on;
                    base        time;
    
    
    // ************************************************************************* //