Skip to content
Snippets Groups Projects
nut 1.35 KiB
/*--------------------------------*- C++ -*----------------------------------*\
| =========                 |                                                 |
| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
|  \\    /   O peration     | Version:  dev                                   |
|   \\  /    A nd           | Web:      www.OpenFOAM.org                      |
|    \\/     M anipulation  |                                                 |
\*---------------------------------------------------------------------------*/
FoamFile
{
    version     2.0;
    format      ascii;
    class       volScalarField;
    location    "0";
    object      nut;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

dimensions      [0 2 -1 0 0 0 0];

internalField   uniform 0;

boundaryField
{
    ground
    {
        type            nutWallFunction;
        value           uniform 0;
    }

    igloo_region0
    {
        type            nutWallFunction;
        value           uniform 0;
    }

    twoFridgeFreezers_seal_0
    {
        type            nutWallFunction;
        value           uniform 0;
    }

    twoFridgeFreezers_herring_1
    {
        type            nutWallFunction;
        value           uniform 0;
    }
}


// ************************************************************************* //