00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef OPM_WELLSTATEFULLYIMPLICITBLACKOILPOLYMER_HEADER_INCLUDED
00021 #define OPM_WELLSTATEFULLYIMPLICITBLACKOILPOLYMER_HEADER_INCLUDED
00022
00023 #include <opm/autodiff/WellStateFullyImplicitBlackoil.hpp>
00024
00025 namespace Opm
00026 {
00027
00028 class WellStateFullyImplicitBlackoilPolymer : public WellStateFullyImplicitBlackoil
00029 {
00030 public:
00031 std::vector<double>& polymerInflow() { return polymer_inflow_; }
00032 const std::vector<double>& polymerInflow() const { return polymer_inflow_; }
00033 private:
00034 std::vector<double> polymer_inflow_;
00035 };
00036
00037 }
00038
00039 #endif // OPM_WELLSTATEFULLYIMPLICITBLACKOILPOLYMER_HEADER_INCLUDED