diff --git a/tutorial/0/T b/tutorial/0/T
new file mode 100644
index 0000000000000000000000000000000000000000..1b9271588224294899d1479d8b5dd4450f701f4c
--- /dev/null
+++ b/tutorial/0/T
@@ -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      T;
+}
+// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
+
+dimensions      [0 0 0 1 0 0 0];
+
+internalField   uniform 300.0;
+
+boundaryField
+{
+    inlet
+    {
+	type		totalTemperature;
+	T0		uniform 300.0;
+        value           $internalField;
+	gamma		1.4;
+    }
+
+    outlet
+    {
+       type           	zeroGradient;
+    }
+
+
+    top
+    {
+        type            zeroGradient; //adiabatic
+
+    }
+
+    axis
+    {
+        type            empty;
+    }
+	
+    front
+    {
+        type            wedge;
+    }
+	
+    back
+    {
+        type            wedge;
+    }
+	
+}
+
+// ************************************************************************* //