Merge pull request #737 from joakim-hove/process-segments

Add WellSegments::process() front-end method
This commit is contained in:
Joakim Hove
2019-04-20 13:14:01 +02:00
committed by GitHub
3 changed files with 14 additions and 14 deletions

View File

@@ -40,7 +40,6 @@ namespace Opm {
double lengthTopSegment() const;
double volumeTopSegment() const;
WellSegment::LengthDepthEnum lengthDepthType() const;
WellSegment::CompPressureDropEnum compPressureDrop() const;
WellSegment::MultiPhaseModelEnum multiPhaseModel() const;
@@ -55,13 +54,14 @@ namespace Opm {
const Segment& operator[](size_t idx) const;
void orderSegments();
void processABS();
void processINC(const bool first_time);
void process(bool first_time);
bool operator==( const WellSegments& ) const;
bool operator!=( const WellSegments& ) const;
private:
void processABS();
void processINC(const bool first_time);
// name of the well
std::string m_well_name;