2012-08-27 06:16:10 -05:00
|
|
|
/*
|
|
|
|
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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2012-08-30 08:31:28 -05:00
|
|
|
#ifndef OPM_POLYMERBLACKOILSTATE_HEADER_INCLUDED
|
|
|
|
#define OPM_POLYMERBLACKOILSTATE_HEADER_INCLUDED
|
2012-08-27 06:16:10 -05:00
|
|
|
|
|
|
|
|
|
|
|
#include <opm/core/simulator/BlackoilState.hpp>
|
|
|
|
#include <opm/core/grid.h>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace Opm
|
|
|
|
{
|
|
|
|
|
|
|
|
/// Simulator state for a compressible two-phase simulator with polymer.
|
|
|
|
/// We use the Blackoil state parameters.
|
2015-05-27 16:15:30 -05:00
|
|
|
class PolymerBlackoilState : public BlackoilState
|
2012-08-27 06:16:10 -05:00
|
|
|
{
|
|
|
|
public:
|
2016-02-28 04:27:00 -06:00
|
|
|
static const std::string CONCENTRATION;
|
|
|
|
static const std::string CMAX;
|
2014-04-14 16:52:50 -05:00
|
|
|
|
2016-02-28 04:27:00 -06:00
|
|
|
PolymerBlackoilState(int number_of_cells, int number_of_faces, int num_phases);
|
2012-08-27 06:16:10 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Opm
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-08-30 08:58:14 -05:00
|
|
|
#endif // OPM_POLYMERBLACKOILSTATE_HEADER_INCLUDED
|