Rename directory opm/core/tof -> opm/core/flowdiagnostics.

This commit is contained in:
Atgeirr Flø Rasmussen 2015-02-03 21:44:24 +01:00
parent 55b2320ded
commit 9f4da3ad03
17 changed files with 24 additions and 24 deletions

View File

@ -110,11 +110,11 @@ list (APPEND MAIN_SOURCE_FILES
opm/core/simulator/SimulatorReport.cpp opm/core/simulator/SimulatorReport.cpp
opm/core/simulator/SimulatorState.cpp opm/core/simulator/SimulatorState.cpp
opm/core/simulator/SimulatorTimer.cpp opm/core/simulator/SimulatorTimer.cpp
opm/core/tof/AnisotropicEikonal.cpp opm/core/flowdiagnostics/AnisotropicEikonal.cpp
opm/core/tof/DGBasis.cpp opm/core/flowdiagnostics/DGBasis.cpp
opm/core/tof/FlowDiagnostics.cpp opm/core/flowdiagnostics/FlowDiagnostics.cpp
opm/core/tof/TofReorder.cpp opm/core/flowdiagnostics/TofReorder.cpp
opm/core/tof/TofDiscGalReorder.cpp opm/core/flowdiagnostics/TofDiscGalReorder.cpp
opm/core/transport/TransportSolverTwophaseInterface.cpp opm/core/transport/TransportSolverTwophaseInterface.cpp
opm/core/transport/implicit/TransportSolverTwophaseImplicit.cpp opm/core/transport/implicit/TransportSolverTwophaseImplicit.cpp
opm/core/transport/implicit/transport_source.c opm/core/transport/implicit/transport_source.c
@ -384,11 +384,11 @@ list (APPEND PUBLIC_HEADER_FILES
opm/core/simulator/initState_impl.hpp opm/core/simulator/initState_impl.hpp
opm/core/simulator/initStateEquil.hpp opm/core/simulator/initStateEquil.hpp
opm/core/simulator/initStateEquil_impl.hpp opm/core/simulator/initStateEquil_impl.hpp
opm/core/tof/AnisotropicEikonal.hpp opm/core/flowdiagnostics/AnisotropicEikonal.hpp
opm/core/tof/DGBasis.hpp opm/core/flowdiagnostics/DGBasis.hpp
opm/core/tof/FlowDiagnostics.hpp opm/core/flowdiagnostics/FlowDiagnostics.hpp
opm/core/tof/TofReorder.hpp opm/core/flowdiagnostics/TofReorder.hpp
opm/core/tof/TofDiscGalReorder.hpp opm/core/flowdiagnostics/TofDiscGalReorder.hpp
opm/core/transport/TransportSolverTwophaseInterface.hpp opm/core/transport/TransportSolverTwophaseInterface.hpp
opm/core/transport/implicit/CSRMatrixBlockAssembler.hpp opm/core/transport/implicit/CSRMatrixBlockAssembler.hpp
opm/core/transport/implicit/CSRMatrixUmfpackSolver.hpp opm/core/transport/implicit/CSRMatrixUmfpackSolver.hpp

View File

@ -23,7 +23,7 @@
#include "config.h" #include "config.h"
#endif // HAVE_CONFIG_H #endif // HAVE_CONFIG_H
#include <opm/core/tof/AnisotropicEikonal.hpp> #include <opm/core/flowdiagnostics/AnisotropicEikonal.hpp>
#include <opm/core/grid.h> #include <opm/core/grid.h>
#include <opm/core/grid/GridManager.hpp> #include <opm/core/grid/GridManager.hpp>
#include <opm/core/utility/ErrorMacros.hpp> #include <opm/core/utility/ErrorMacros.hpp>

View File

@ -39,8 +39,8 @@
#include <opm/core/linalg/LinearSolverFactory.hpp> #include <opm/core/linalg/LinearSolverFactory.hpp>
#include <opm/core/pressure/IncompTpfaSinglePhase.hpp> #include <opm/core/pressure/IncompTpfaSinglePhase.hpp>
#include <opm/core/tof/TofReorder.hpp> #include <opm/core/flowdiagnostics/TofReorder.hpp>
#include <opm/core/tof/TofDiscGalReorder.hpp> #include <opm/core/flowdiagnostics/TofDiscGalReorder.hpp>
#include <opm/parser/eclipse/Parser/Parser.hpp> #include <opm/parser/eclipse/Parser/Parser.hpp>
#include <opm/parser/eclipse/EclipseState/Schedule/Schedule.hpp> #include <opm/parser/eclipse/EclipseState/Schedule/Schedule.hpp>

View File

@ -43,8 +43,8 @@
#include <opm/core/simulator/WellState.hpp> #include <opm/core/simulator/WellState.hpp>
#include <opm/core/simulator/initState.hpp> #include <opm/core/simulator/initState.hpp>
#include <opm/core/pressure/IncompTpfa.hpp> #include <opm/core/pressure/IncompTpfa.hpp>
#include <opm/core/tof/TofReorder.hpp> #include <opm/core/flowdiagnostics/TofReorder.hpp>
#include <opm/core/tof/TofDiscGalReorder.hpp> #include <opm/core/flowdiagnostics/TofDiscGalReorder.hpp>
#include <memory> #include <memory>
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>

View File

@ -17,7 +17,7 @@
along with OPM. If not, see <http://www.gnu.org/licenses/>. along with OPM. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <opm/core/tof/AnisotropicEikonal.hpp> #include <opm/core/flowdiagnostics/AnisotropicEikonal.hpp>
#include <opm/core/grid/GridUtilities.hpp> #include <opm/core/grid/GridUtilities.hpp>
#include <opm/core/grid.h> #include <opm/core/grid.h>
#include <opm/core/utility/RootFinders.hpp> #include <opm/core/utility/RootFinders.hpp>

View File

@ -18,7 +18,7 @@
*/ */
#include "config.h" #include "config.h"
#include <opm/core/tof/DGBasis.hpp> #include <opm/core/flowdiagnostics/DGBasis.hpp>
#include <opm/core/grid.h> #include <opm/core/grid.h>
#include <opm/core/utility/ErrorMacros.hpp> #include <opm/core/utility/ErrorMacros.hpp>
#include <numeric> #include <numeric>

View File

@ -17,7 +17,7 @@
along with OPM. If not, see <http://www.gnu.org/licenses/>. along with OPM. If not, see <http://www.gnu.org/licenses/>.
*/ */
#include <opm/core/tof/FlowDiagnostics.hpp> #include <opm/core/flowdiagnostics/FlowDiagnostics.hpp>
#include <opm/core/utility/ErrorMacros.hpp> #include <opm/core/utility/ErrorMacros.hpp>
#include <algorithm> #include <algorithm>

View File

@ -20,8 +20,8 @@
#include "config.h" #include "config.h"
#include <opm/core/grid/CellQuadrature.hpp> #include <opm/core/grid/CellQuadrature.hpp>
#include <opm/core/grid/FaceQuadrature.hpp> #include <opm/core/grid/FaceQuadrature.hpp>
#include <opm/core/tof/TofDiscGalReorder.hpp> #include <opm/core/flowdiagnostics/TofDiscGalReorder.hpp>
#include <opm/core/tof/DGBasis.hpp> #include <opm/core/flowdiagnostics/DGBasis.hpp>
#include <opm/core/grid.h> #include <opm/core/grid.h>
#include <opm/core/utility/ErrorMacros.hpp> #include <opm/core/utility/ErrorMacros.hpp>
#include <opm/core/utility/SparseTable.hpp> #include <opm/core/utility/SparseTable.hpp>

View File

@ -18,7 +18,7 @@
*/ */
#include "config.h" #include "config.h"
#include <opm/core/tof/TofReorder.hpp> #include <opm/core/flowdiagnostics/TofReorder.hpp>
#include <opm/core/grid.h> #include <opm/core/grid.h>
#include <opm/core/utility/ErrorMacros.hpp> #include <opm/core/utility/ErrorMacros.hpp>
#include <opm/core/utility/SparseTable.hpp> #include <opm/core/utility/SparseTable.hpp>

View File

@ -27,7 +27,7 @@
#define BOOST_TEST_MODULE AnisotropicEikonalTest #define BOOST_TEST_MODULE AnisotropicEikonalTest
#include <boost/test/unit_test.hpp> #include <boost/test/unit_test.hpp>
#include <opm/core/tof/AnisotropicEikonal.hpp> #include <opm/core/flowdiagnostics/AnisotropicEikonal.hpp>
#include <opm/core/grid/GridManager.hpp> #include <opm/core/grid/GridManager.hpp>
#include <opm/core/grid.h> #include <opm/core/grid.h>
#include <cmath> #include <cmath>

View File

@ -27,7 +27,7 @@
#define BOOST_TEST_MODULE DGBasisTest #define BOOST_TEST_MODULE DGBasisTest
#include <boost/test/unit_test.hpp> #include <boost/test/unit_test.hpp>
#include <opm/core/tof/DGBasis.hpp> #include <opm/core/flowdiagnostics/DGBasis.hpp>
#include <opm/core/grid/GridManager.hpp> #include <opm/core/grid/GridManager.hpp>
#include <opm/core/grid.h> #include <opm/core/grid.h>
#include <cmath> #include <cmath>

View File

@ -27,7 +27,7 @@
#define BOOST_TEST_MODULE FlowDiagnosticsTests #define BOOST_TEST_MODULE FlowDiagnosticsTests
#include <boost/test/unit_test.hpp> #include <boost/test/unit_test.hpp>
#include <opm/core/tof/FlowDiagnostics.hpp> #include <opm/core/flowdiagnostics/FlowDiagnostics.hpp>
const std::vector<double> pv(16, 18750.0); const std::vector<double> pv(16, 18750.0);