/* Copyright 2012 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 . */ #ifndef OPM_TOFREORDER_HEADER_INCLUDED #define OPM_TOFREORDER_HEADER_INCLUDED #include #include #include #include struct UnstructuredGrid; namespace Opm { class IncompPropertiesInterface; /// Implements a first-order finite volume solver for /// (single-phase) time-of-flight using reordering. /// The equation solved is: /// \f[v \cdot \nabla\tau = \phi\f] /// in which \f$ v \f$ is the fluid velocity, \f$ \tau \f$ is time-of-flight and /// \f$ \phi \f$ is the porosity. This is a boundary value problem, and /// \f$ \tau \f$ is specified to be zero on all inflow boundaries. class TofReorder : public ReorderSolverInterface { public: /// Construct solver. /// \param[in] grid A 2d or 3d grid. /// \param[in] use_multidim_upwind If true, use multidimensional tof upwinding. TofReorder(const UnstructuredGrid& grid, const bool use_multidim_upwind = false); /// Solve for time-of-flight. /// \param[in] darcyflux Array of signed face fluxes. /// \param[in] porevolume Array of pore volumes. /// \param[in] source Source term. Sign convention is: /// (+) inflow flux, /// (-) outflow flux. /// \param[out] tof Array of time-of-flight values. void solveTof(const double* darcyflux, const double* porevolume, const double* source, std::vector& tof); /// Solve for time-of-flight and a number of tracers. /// One tracer will be used for each inflow flux specified in /// the source parameter. /// \param[in] darcyflux Array of signed face fluxes. /// \param[in] porevolume Array of pore volumes. /// \param[in] source Source term. Sign convention is: /// (+) inflow flux, /// (-) outflow flux. /// \param[out] tof Array of time-of-flight values (1 per cell). /// \param[out] tracer Array of tracer values (N per cell, where N is /// the number of cells c for which source[c] > 0.0). void solveTofTracer(const double* darcyflux, const double* porevolume, const double* source, std::vector& tof, std::vector& tracer); private: virtual void solveSingleCell(const int cell); void solveSingleCellMultidimUpwind(const int cell); virtual void solveMultiCell(const int num_cells, const int* cells); void multidimUpwindTerms(const int face, const int upwind_cell, double& face_term, double& cell_term_factor) const; private: const UnstructuredGrid& grid_; const double* darcyflux_; // one flux per grid face const double* porevolume_; // one volume per cell const double* source_; // one volumetric source term per cell double* tof_; double* tracer_; int num_tracers_; bool use_multidim_upwind_; std::vector face_tof_; // For multidim upwind face tofs. mutable std::vector adj_faces_; // For multidim upwind logic. }; } // namespace Opm #endif // OPM_TRANSPORTMODELTRACERTOF_HEADER_INCLUDED