From c9ecf3bd7d5f344c9f2e916fc9449784a64b637b Mon Sep 17 00:00:00 2001
From: Sebastian Weiss <sebastian.weiss@ptb.de>
Date: Fri, 28 Oct 2022 06:28:54 +0000
Subject: [PATCH] Upload New File

---
 tutorial/0/omega | 60 ++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 60 insertions(+)
 create mode 100644 tutorial/0/omega

diff --git a/tutorial/0/omega b/tutorial/0/omega
new file mode 100644
index 0000000..f8e00a0
--- /dev/null
+++ b/tutorial/0/omega
@@ -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      omega;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+dimensions      [0 0 -1 0 0 0 0];
+
+internalField   uniform 1800.0;
+
+boundaryField
+{
+    inlet
+    {
+        type            fixedValue;
+        value           uniform 1800.0;
+    }
+
+    outlet
+    {
+        type            zeroGradient;
+    }
+
+
+    top
+    {
+        type            omegaWallFunction;
+        value           $internalField;
+    }
+
+
+    axis
+    {
+        type            empty;
+    }
+	
+    front
+    {
+        type            wedge;
+    }
+	
+    back
+    {
+        type            wedge;
+    }
+
+}
+
+
+// ************************************************************************* //
-- 
GitLab