diff --git a/tutorial/0/omega b/tutorial/0/omega
new file mode 100644
index 0000000000000000000000000000000000000000..f8e00a002adf4d84d19bf9194ee3cd0cf92a3061
--- /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;
+    }
+
+}
+
+
+// ************************************************************************* //