From dc3293e56194b4a3c03d03288e433a7af7923f3c Mon Sep 17 00:00:00 2001 From: Sebastian Weiss <sebastian.weiss@ptb.de> Date: Fri, 28 Oct 2022 06:29:18 +0000 Subject: [PATCH] Upload New File --- tutorial/0/T | 60 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 tutorial/0/T diff --git a/tutorial/0/T b/tutorial/0/T new file mode 100644 index 0000000..1b92715 --- /dev/null +++ b/tutorial/0/T @@ -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 T; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 0 0 1 0 0 0]; + +internalField uniform 300.0; + +boundaryField +{ + inlet + { + type totalTemperature; + T0 uniform 300.0; + value $internalField; + gamma 1.4; + } + + outlet + { + type zeroGradient; + } + + + top + { + type zeroGradient; //adiabatic + + } + + axis + { + type empty; + } + + front + { + type wedge; + } + + back + { + type wedge; + } + +} + +// ************************************************************************* // -- GitLab