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

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

diff --git a/tutorial/0/U b/tutorial/0/U
new file mode 100644
index 0000000..d4a31b3
--- /dev/null
+++ b/tutorial/0/U
@@ -0,0 +1,58 @@
+/*--------------------------------*- 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       volVectorField;
+    object      U;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+dimensions      [0 1 -1 0 0 0 0];
+
+internalField   uniform (0 0 0);
+
+boundaryField
+{
+    inlet
+    {
+        type            pressureInletOutletVelocity;
+	value		$internalField;
+    }
+
+    outlet
+    {
+        type            zeroGradient;
+    }
+
+
+    top
+    {
+        type            noSlip;
+    }
+
+
+    axis
+    {
+        type            empty;
+    }
+	
+    front
+    {
+        type            wedge;
+    }
+	
+    back
+    {
+        type            wedge;
+    }
+
+}
+
+// ************************************************************************* //
-- 
GitLab