diff --git a/CMakeLists_files.cmake b/CMakeLists_files.cmake
index 55d1d29..1722763 100644
--- a/CMakeLists_files.cmake
+++ b/CMakeLists_files.cmake
@@ -105,8 +105,6 @@ list (APPEND EXAMPLE_SOURCE_FILES
examples/mimetic_aniso_solver_test.cpp
examples/mimetic_periodic_test.cpp
examples/mimetic_solver_test.cpp
- examples/sim_blackoil_impes.cpp
- examples/sim_co2_impes.cpp
examples/sim_steadystate_explicit.cpp
examples/sim_steadystate_implicit.cpp
examples/steadystate_test_implicit.cpp
@@ -143,8 +141,6 @@ list (APPEND PROGRAM_SOURCE_FILES
examples/cpregularize.cpp
examples/exp_variogram.cpp
examples/grdecldips.cpp
- examples/sim_blackoil_impes.cpp
- examples/sim_co2_impes.cpp
examples/steadystate_test_implicit.cpp
examples/upscale_avg.cpp
examples/upscale_cap.cpp
diff --git a/examples/sim_blackoil_impes.cpp b/examples/sim_blackoil_impes.cpp
deleted file mode 100644
index 30648ab..0000000
--- a/examples/sim_blackoil_impes.cpp
+++ /dev/null
@@ -1,81 +0,0 @@
-/*
- Copyright 2010 SINTEF ICT, Applied Mathematics.
-
- This file is part of the Open Porous Media project (OPM).
-
- OPM 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.
-
- OPM 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 OPM. If not, see .
-*/
-
-#include "config.h"
-
-#include
-
-#include
-
-#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
-#include
-#else
-#include
-#endif
-
-#include
-
-#include
-
-#include
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-
-typedef Dune::CpGrid Grid;
-typedef Opm::Rock Rock;
-typedef Opm::BlackoilFluid Fluid;
-typedef Opm::BlackoilWells Wells;
-typedef Opm::BasicBoundaryConditions FBC;
-typedef Opm::TpfaCompressible FlowSolver;
-typedef Opm::ExplicitCompositionalTransport TransportSolver;
-
-
-typedef Opm::BlackoilSimulator Simulator;
-
-int main(int argc, char** argv)
-try
-{
- Opm::ParameterGroup param(argc, argv);
- Dune::MPIHelper::instance(argc,argv);
-
- // Initialize.
- Simulator sim;
- sim.init(param);
-
- // Run simulation.
- Opm::time::StopWatch clock;
- clock.start();
- sim.simulate();
- clock.stop();
- std::cout << "\n\nSimulation clock time (secs): "
- << clock.secsSinceStart() << std::endl;
-}
-catch (const std::exception &e) {
- std::cerr << "Program threw an exception: " << e.what() << "\n";
- throw;
-}
diff --git a/examples/sim_co2_impes.cpp b/examples/sim_co2_impes.cpp
deleted file mode 100644
index fcbce9c..0000000
--- a/examples/sim_co2_impes.cpp
+++ /dev/null
@@ -1,84 +0,0 @@
-/*
- Copyright 2010 SINTEF ICT, Applied Mathematics.
-
- This file is part of the Open Porous Media project (OPM).
-
- OPM 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.
-
- OPM 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 OPM. If not, see .
-*/
-
-
-
-#include "config.h"
-
-#include
-
-#include
-#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
-#include
-#else
-#include
-#endif
-
-#include
-
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-#include
-
-#include
-#include
-
-#include
-
-#include
-
-typedef Dune::CpGrid Grid;
-typedef Opm::Rock Rock;
-typedef Opm::BlackoilFluid Fluid;
-typedef Opm::BlackoilWells Wells;
-typedef Opm::BasicBoundaryConditions FBC;
-typedef Opm::TpfaCompressible FlowSolver;
-typedef Opm::ExplicitCompositionalTransport TransportSolver;
-
-typedef Opm::BlackoilSimulator Simulator;
-
-
-int main(int argc, char** argv)
-try
-{
- Opm::ParameterGroup param(argc, argv);
- Dune::MPIHelper::instance(argc,argv);
-
- // Initialize.
- Simulator sim;
- sim.init(param);
-
- // Run simulation.
- Opm::time::StopWatch clock;
- clock.start();
- sim.simulate();
- clock.stop();
- std::cout << "\n\nSimulation clock time (secs): " << clock.secsSinceStart() << std::endl;
-}
-catch (const std::exception &e) {
- std::cerr << "Program threw an exception: " << e.what() << "\n";
- throw;
-}
-
-