Skip to content
Snippets Groups Projects
controlDict 1.22 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*--------------------------------*- C++ -*----------------------------------*\
    | =========                 |                                                 |
    | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
    
    |  \\    /   O peration     | Version:  v1812                                 |
    
    |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
    
    |    \\/     M anipulation  |                                                 |
    \*---------------------------------------------------------------------------*/
    
    FoamFile
    {
        version         2.0;
        format          ascii;
        class           dictionary;
        object          controlDict;
    }
    
    // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
    
    
    application     foamyHexMesh;
    
    
    startFrom       startTime;
    
    startTime       0;
    
    stopAt          endTime;
    
    endTime         100;
    
    deltaT          1;
    
    writeControl    timeStep;
    
    writeInterval   100;
    
    purgeWrite      0;
    
    writeFormat     ascii;
    
    writePrecision  10;
    
    
    writeCompression off;
    
    
    timeFormat      general;
    
    timePrecision   6;
    
    runTimeModifiable yes;
    
    
    
    
    // ************************************************************************* //