From d6b5b598890b1b82caf6f972d46b19011d7492f8 Mon Sep 17 00:00:00 2001 From: Sebastian Weiss <sebastian.weiss@ptb.de> Date: Fri, 28 Oct 2022 06:28:28 +0000 Subject: [PATCH] Upload New File --- tutorial/0/k | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 tutorial/0/k diff --git a/tutorial/0/k b/tutorial/0/k new file mode 100644 index 0000000..e655638 --- /dev/null +++ b/tutorial/0/k @@ -0,0 +1,60 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2012 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + object k; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0.01215; + +boundaryField +{ + inlet + { + type fixedValue; + value uniform 0.01215; + } + + outlet + { + type zeroGradient; + } + + + top + { + type kLowReWallFunction; + value $internalField; + } + + + axis + { + type empty; + } + + front + { + type wedge; + } + + back + { + type wedge; + } + +} + + +// ************************************************************************* // -- GitLab