/*
Copyright 2020 Equinor ASA.
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_BCCONFIG_HPP
#define OPM_BCCONFIG_HPP
#include
#include
#include
namespace Opm {
class Deck;
class DeckRecord;
enum class BCType {
RATE,
FREE
};
enum class BCComponent {
OIL,
GAS,
WATER,
SOLVENT,
POLYMER,
NONE
};
class BCConfig {
public:
struct BCFace {
int i1,i2;
int j1,j2;
int k1,k2;
BCType bctype;
FaceDir::DirEnum dir;
BCComponent component;
double rate;
BCFace() = default;
BCFace(const DeckRecord& record);
static BCFace serializeObject();
bool operator==(const BCFace& other) const;
template
void serializeOp(Serializer& serializer)
{
serializer(i1);
serializer(i2);
serializer(j1);
serializer(j2);
serializer(k1);
serializer(k2);
serializer(bctype);
serializer(dir);
serializer(component);
serializer(rate);
}
};
BCConfig() = default;
explicit BCConfig(const Deck& deck);
static BCConfig serializeObject();
std::size_t size() const;
std::vector::const_iterator begin() const;
std::vector::const_iterator end() const;
bool operator==(const BCConfig& other) const;
template
void serializeOp(Serializer& serializer)
{
serializer.vector(m_faces);
}
private:
std::vector m_faces;
};
} //namespace Opm
#endif