Skip to content
Snippets Groups Projects
controlDict 1.21 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*--------------------------------*- C++ -*----------------------------------*\
    
    | =========                 |                                                 |
    | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
    
    Andrew Heather's avatar
    Andrew Heather committed
    |   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
    
    |    \\/     M anipulation  |                                                 |
    \*---------------------------------------------------------------------------*/
    FoamFile
    {
    
    Andrew Heather's avatar
    Andrew Heather committed
        location    "system";
    
    }
    // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
    
    
    application     scalarTransportFoam;
    
    
    startFrom       startTime;
    
    startTime       0;
    
    stopAt          endTime;
    
    endTime         0.1;
    
    deltaT          0.0001;
    
    writeControl    timeStep;
    
    writeInterval   50;
    
    purgeWrite      0;
    
    writeFormat     ascii;
    
    writePrecision  6;
    
    writeCompression uncompressed;
    
    timeFormat      general;
    
    timePrecision   6;
    
    runTimeModifiable yes;
    
    
    // ************************************************************************* //