diff --git a/tutorial/0/nut b/tutorial/0/nut
new file mode 100644
index 0000000000000000000000000000000000000000..6182a54bfe9dd3f0d5bc0c727916aadba620b3a8
--- /dev/null
+++ b/tutorial/0/nut
@@ -0,0 +1,61 @@
+/*--------------------------------*- 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      nut;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+dimensions      [0 2 -1 0 0 0 0];
+
+internalField   uniform 0;
+
+boundaryField
+{
+    inlet
+    {
+        type            calculated;
+        value           uniform 0;
+    }
+
+    outlet
+    {
+        type            calculated;
+        value           uniform 0;
+    }
+
+
+    top
+    {
+        type            nutkWallFunction;
+        value           uniform 0;
+    }
+
+
+    axis
+    {
+        type            empty;
+    }
+	
+    front
+    {
+        type            wedge;
+    }
+	
+    back
+    {
+        type            wedge;
+    }
+
+}
+
+
+// ************************************************************************* //