diff --git a/tutorial/0/p b/tutorial/0/p
new file mode 100644
index 0000000000000000000000000000000000000000..a1dabbdd82cafe6b726f5e11ad5c87572382f059
--- /dev/null
+++ b/tutorial/0/p
@@ -0,0 +1,56 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+| =========                 |                                                 |
+| \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox           |
+|  \\    /   O peration     | Version:  2012                                  |
+|   \\  /    A nd           | Website:  www.openfoam.com                      |
+|    \\/     M anipulation  |                                                 |
+\*---------------------------------------------------------------------------*/
+FoamFile
+{
+    version     2.0;
+    format      ascii;
+    class       volScalarField;
+    location    "0";
+    object      p;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+dimensions      [1 -1 -2 0 0 0 0];
+
+
+internalField   uniform 200e+05;
+
+boundaryField
+{
+    inlet
+    {
+        type            totalPressure;
+        p0              uniform 200e+05;
+        value           uniform 200e+05;
+    }
+    outlet
+    {
+	type		fixedMean; 
+	meanValue	100e+05;
+	value		uniform 100e+05;
+    }
+    top
+    {
+        type            zeroGradient;
+    }
+    axis
+    {
+        type            empty;
+    }
+    front
+    {
+        type            wedge;
+    }
+    back
+    {
+        type            wedge;
+    }
+}
+
+
+// ************************************************************************* //