diff --git a/applications/test/ThermoMixture/Make/files b/applications/test/ThermoMixture/Make/files
deleted file mode 100644
index 8a122d0e0b..0000000000
--- a/applications/test/ThermoMixture/Make/files
+++ /dev/null
@@ -1,4 +0,0 @@
-
-ThermoMixture.C
-
-EXE = $(FOAM_APPBIN)/ThermoMixture
diff --git a/applications/test/ThermoMixture/Make/options b/applications/test/ThermoMixture/Make/options
deleted file mode 100644
index 98bf79aaa4..0000000000
--- a/applications/test/ThermoMixture/Make/options
+++ /dev/null
@@ -1,5 +0,0 @@
-EXE_INC = \
- -I$(LIB_SRC)/thermophysicalModels/specie/lnInclude
-
-EXE_LIBS = \
- -lspecie
diff --git a/applications/test/ThermoMixture/ThermoMixture.C b/applications/test/ThermoMixture/ThermoMixture.C
deleted file mode 100644
index 14c71e9b01..0000000000
--- a/applications/test/ThermoMixture/ThermoMixture.C
+++ /dev/null
@@ -1,62 +0,0 @@
-/*---------------------------------------------------------------------------*\
- ========= |
- \\ / F ield | OpenFOAM: The Open Source CFD Toolbox
- \\ / O peration |
- \\ / A nd | Copyright (C) 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 .
-
-Application
- ThermoMixture
-
-Description
-
-\*---------------------------------------------------------------------------*/
-
-#include "dictionary.H"
-#include "IFstream.H"
-#include "constTransport.H"
-#include "specieThermo.H"
-#include "hConstThermo.H"
-#include "perfectGas.H"
-
-using namespace Foam;
-
-// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
-// Main program:
-
-int main(int argc, char *argv[])
-{
- typedef constTransport > > ThermoType;
-
- IFstream f("thermoDict");
- dictionary dict(f);
-
- ThermoType t1(dict.subDict("specie1"));
- ThermoType t2(dict.subDict("specie2"));
-
- Info << "W= " << t1.W() << " " << t2.W() << " " << (t1+t2).W() << endl;
- Info << "Cp= " << t1.cp(1) << " " << t2.cp(1) << " " << (t1+t2).cp(1) << endl;
-
- Info<< "\nEnd\n" << endl;
-
- return 0;
-}
-
-
-// ************************************************************************* //
diff --git a/applications/test/ThermoMixture/thermoDict b/applications/test/ThermoMixture/thermoDict
deleted file mode 100644
index 9b439490df..0000000000
--- a/applications/test/ThermoMixture/thermoDict
+++ /dev/null
@@ -1,41 +0,0 @@
-specie1
-{
- specie
- {
- nMoles 1;
- molWeight 1;
- }
-
- thermodynamics
- {
- Cp 1;
- Hf 0;
- }
-
- transport
- {
- mu 1;
- Pr 1;
- }
-}
-
-specie2
-{
- specie
- {
- nMoles 1;
- molWeight 0.5;
- }
-
- thermodynamics
- {
- Cp 2;
- Hf 0;
- }
-
- transport
- {
- mu 1;
- Pr 1;
- }
-}