/*--------------------------------*- C++ -*----------------------------------*\ ========= | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox \\ / O peration | Website: https://openfoam.org \\ / A nd | Version: dev \\/ M anipulation | \*---------------------------------------------------------------------------*/ FoamFile { format ascii; class volScalarField; object k; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // kInlet 0.001; dimensions [0 2 -2 0 0 0 0]; internalField uniform $kInlet; boundaryField { inlet { type fixedValue; value uniform $kInlet; } "(atmosphere|outlet)" { type inletOutlet; inletValue uniform $kInlet; value uniform $kInlet; } walls { type kqRWallFunction; value uniform $kInlet; } empty { type empty; } } // ************************************************************************* //