diff --git a/src/fileFormats/sampledSetWriters/gnuplot/gnuplotSetWriter.C b/src/fileFormats/sampledSetWriters/gnuplot/gnuplotSetWriter.C
new file mode 100644
index 0000000000..2679e1e702
--- /dev/null
+++ b/src/fileFormats/sampledSetWriters/gnuplot/gnuplotSetWriter.C
@@ -0,0 +1,141 @@
+/*---------------------------------------------------------------------------*\
+ ========= |
+ \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
+ \\ / O peration |
+ \\ / A nd | Copyright (C) 2011-2012 OpenFOAM Foundation
+ \\/ M anipulation |
+-------------------------------------------------------------------------------
+License
+ This file is part of OpenFOAM.
+
+ OpenFOAM is free software: you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ OpenFOAM is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
+ for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with OpenFOAM. If not, see .
+
+\*---------------------------------------------------------------------------*/
+
+#include "gnuplotSetWriter.H"
+#include "coordSet.H"
+#include "fileName.H"
+#include "OFstream.H"
+#include "addToRunTimeSelectionTable.H"
+
+
+// * * * * * * * * * * * * * * * * Constructors * * * * * * * * * * * * * * //
+
+template
+Foam::gnuplotSetWriter::gnuplotSetWriter()
+:
+ writer()
+{}
+
+// * * * * * * * * * * * * * * * * Destructor * * * * * * * * * * * * * * * //
+
+template
+Foam::gnuplotSetWriter::~gnuplotSetWriter()
+{}
+
+
+// * * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * //
+
+template
+Foam::fileName Foam::gnuplotSetWriter::getFileName
+(
+ const coordSet& points,
+ const wordList& valueSetNames
+) const
+{
+ return this->getBaseName(points, valueSetNames) + ".gplt";
+}
+
+
+template
+void Foam::gnuplotSetWriter::write
+(
+ const coordSet& points,
+ const wordList& valueSetNames,
+ const List*>& valueSets,
+ Ostream& os
+) const
+{
+ os << "set term postscript color" << nl
+ << "set output \"" << points.name() << ".ps\"" << nl
+ << "plot";
+
+ forAll(valueSets, i)
+ {
+ if (i != 0)
+ {
+ os << ',';
+ }
+
+ os << " \"-\" title \"" << valueSetNames[i] << "\" with lines";
+ }
+ os << nl;
+
+
+ forAll(valueSets, i)
+ {
+ this->writeTable(points, *valueSets[i], os);
+ os << "e" << nl;
+ }
+}
+
+
+template
+void Foam::gnuplotSetWriter::write
+(
+ const bool writeTracks,
+ const PtrList& trackPoints,
+ const wordList& valueSetNames,
+ const List > >& valueSets,
+ Ostream& os
+) const
+{
+ if (valueSets.size() != valueSetNames.size())
+ {
+ FatalErrorIn("gnuplotSetWriter::write(..)")
+ << "Number of variables:" << valueSetNames.size() << endl
+ << "Number of valueSets:" << valueSets.size()
+ << exit(FatalError);
+ }
+ if (trackPoints.size() > 0)
+ {
+ os << "set term postscript color" << nl
+ << "set output \"" << trackPoints[0].name() << ".ps\"" << nl;
+
+ forAll(trackPoints, trackI)
+ {
+ os << "plot";
+
+ forAll(valueSets, i)
+ {
+ if (i != 0)
+ {
+ os << ',';
+ }
+
+ os << " \"-\" title \"" << valueSetNames[i] << "\" with lines";
+ }
+ os << nl;
+
+ forAll(valueSets, i)
+ {
+ this->writeTable(trackPoints[trackI], valueSets[i][trackI], os);
+ os << "e" << nl;
+ }
+ }
+ }
+}
+
+
+// ************************************************************************* //