Skip to content
Snippets Groups Projects
Cvf 1.37 KiB
Newer Older
  • Learn to ignore specific revisions
  • /*--------------------------------*- C++ -*----------------------------------*\
    | =========                 |                                                 |
    | \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
    
    |  \\    /   O peration     | Version:  v1806                                 |
    
    |   \\  /    A nd           | Web:      www.OpenFOAM.com                      |
    |    \\/     M anipulation  |                                                 |
    \*---------------------------------------------------------------------------*/
    FoamFile
    {
        version     2.0;
        format      ascii;
        class       volScalarField;
        location    "0";
        object      Cvf;
    }
    // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
    
    dimensions      [0 -1 0 0 0 0 0];
    
    
    internalField   uniform 0;
    
    boundaryField
    {
        inlet
        {
            type            calculated;
            value           uniform 0;
        }
        bound
        {
            type            calculated;
            value           uniform 0;
        }
        outlet
        {
            type            calculated;
            value           uniform 0;
        }
        bottom
        {
            type            calculated;
            value           uniform 0;
        }
        top
        {
            type            calculated;
            value           uniform 0;
        }
    }
    
    
    // ************************************************************************* //