/*--------------------------------*- 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.002; dimensions [0 2 -2 0 0 0 0]; internalField uniform $kInlet; boundaryField { inlet { type fixedValue; value uniform $kInlet; } freestream { type inletOutlet; inletValue uniform $kInlet; value uniform $kInlet; } wall { type kqRWallFunction; value uniform $kInlet; } processor { type processor; value uniform $kInlet; } } // ************************************************************************* //