diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/system/controlDict b/tutorials/incompressible/simpleFoam/pitzDaily/system/controlDict
index ee8b85eb23942206cdcd44ce35bedbf895cd84c3..3907fadcc57bdefeaef2f2dfc82148d18148ef91 100644
--- a/tutorials/incompressible/simpleFoam/pitzDaily/system/controlDict
+++ b/tutorials/incompressible/simpleFoam/pitzDaily/system/controlDict
@@ -47,47 +47,7 @@ runTimeModifiable true;
 
 functions
 {
-    streamLines
-    {
-        type            streamLine;
-
-        // Where to load it from (if not already in solver)
-        libs ("libfieldFunctionObjects.so");
-
-        // Output every
-        writeControl    writeTime;
-        // writeInterval 10;
-
-        setFormat       vtk; //gnuplot;//xmgr;//raw;//jplot;//csv;//ensight;
-
-        // Tracked forwards (+U) or backwards (-U)
-        trackForward    true;
-
-        // Names of fields to sample. Should contain above velocity field!
-        fields (p k U);
-
-        // Steps particles can travel before being removed
-        lifeTime        10000;
-
-        // Number of steps per cell (estimate). Set to 1 to disable subcycling.
-        nSubCycle 5;
-
-        // Cloud name to use
-        cloudName       particleTracks;
-
-        // Seeding method.
-        seedSampleSet   uniform;  //cloud; //triSurfaceMeshPointSet;
-
-        uniformCoeffs
-        {
-            type        uniform;
-            axis        x;  //distance;
-
-            start       (-0.0205 0.001  0.00001);
-            end         (-0.0205 0.0251 0.00001);
-            nPoints     10;
-        }
-    }
+    #includeFunc streamlines
 }
 
 // ************************************************************************* //
diff --git a/tutorials/incompressible/simpleFoam/pitzDaily/system/streamlines b/tutorials/incompressible/simpleFoam/pitzDaily/system/streamlines
new file mode 100644
index 0000000000000000000000000000000000000000..83354b269d7fd427dce156c804ae975152803bf9
--- /dev/null
+++ b/tutorials/incompressible/simpleFoam/pitzDaily/system/streamlines
@@ -0,0 +1,21 @@
+/*--------------------------------*- C++ -*----------------------------------*\
+  =========                 |
+  \\      /  F ield         | OpenFOAM: The Open Source CFD Toolbox
+   \\    /   O peration     |
+    \\  /    A nd           | Web:      www.OpenFOAM.org
+     \\/     M anipulation  |
+-------------------------------------------------------------------------------
+Description
+    Writes out files of streamlines with interpolated field data in VTK format.
+
+\*---------------------------------------------------------------------------*/
+
+nLines  10;
+start   (-0.0205 0.001  0.00001);
+end     (-0.0205 0.0251 0.00001);
+fields  (p k U);
+
+// Must be last entry
+#includeEtc "caseDicts/postProcessing/visualization/streamlines.cfg"
+
+// ************************************************************************* //