mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
142 lines
5.6 KiB
C++
142 lines
5.6 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2017 Statoil ASA
|
|
//
|
|
// ResInsight 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.
|
|
//
|
|
// ResInsight 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 at <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#pragma once
|
|
|
|
#include "cvfBase.h"
|
|
#include "cvfObject.h"
|
|
|
|
#include <QString>
|
|
#include <vector>
|
|
|
|
//==================================================================================================
|
|
///
|
|
//==================================================================================================
|
|
enum WellConnectionState {
|
|
OPEN,
|
|
SHUT,
|
|
AUTO,
|
|
};
|
|
|
|
//==================================================================================================
|
|
///
|
|
//==================================================================================================
|
|
enum CellDirection {
|
|
DIR_I,
|
|
DIR_J,
|
|
DIR_K,
|
|
DIR_UNDEF,
|
|
};
|
|
|
|
//==================================================================================================
|
|
///
|
|
//==================================================================================================
|
|
class IJKCellIndex {
|
|
public:
|
|
IJKCellIndex() {};
|
|
IJKCellIndex(size_t i, size_t j, size_t k) : i(i), j(j), k(k) {};
|
|
IJKCellIndex(const IJKCellIndex& other)
|
|
{
|
|
i = other.i;
|
|
j = other.j;
|
|
k = other.k;
|
|
}
|
|
|
|
bool operator==(const IJKCellIndex& other) const
|
|
{
|
|
return i == other.i && j == other.j && k == other.k;
|
|
}
|
|
|
|
bool operator<(const IJKCellIndex& other) const
|
|
{
|
|
if (i != other.i) return i < other.i;
|
|
if (j != other.j) return j < other.j;
|
|
if (k != other.k) return k < other.k;
|
|
return false;
|
|
}
|
|
|
|
size_t i;
|
|
size_t j;
|
|
size_t k;
|
|
};
|
|
|
|
//==================================================================================================
|
|
///
|
|
//==================================================================================================
|
|
struct RigCompletionMetaData {
|
|
RigCompletionMetaData(const QString& name, const QString& comment) : name(name), comment(comment) {}
|
|
|
|
QString name;
|
|
QString comment;
|
|
};
|
|
|
|
//==================================================================================================
|
|
///
|
|
//==================================================================================================
|
|
class RigCompletionData : public cvf::Object
|
|
{
|
|
public:
|
|
RigCompletionData(const QString wellName, const IJKCellIndex cellIndex);
|
|
~RigCompletionData();
|
|
RigCompletionData(const RigCompletionData& other);
|
|
|
|
static RigCompletionData combine(const RigCompletionData& first, const RigCompletionData& second);
|
|
|
|
bool operator<(const RigCompletionData& other) const;
|
|
RigCompletionData& operator=(const RigCompletionData& other);
|
|
|
|
void setFromFracture(double transmissibility, double skinFactor);
|
|
void setFromFishbone(double diameter, CellDirection direction);
|
|
void setFromPerforation(double diameter, CellDirection direction);
|
|
void addMetadata(const QString& name, const QString& comment);
|
|
static bool isDefaultValue(double val);
|
|
|
|
const std::vector<RigCompletionMetaData>& metadata() const { return m_metadata; }
|
|
const QString& wellName() const { return m_wellName; }
|
|
const IJKCellIndex& cellIndex() const { return m_cellIndex; }
|
|
WellConnectionState connectionState() const { return m_connectionState; }
|
|
double saturation() const { return m_saturation; }
|
|
double transmissibility() const { return m_transmissibility; }
|
|
double diameter() const { return m_diameter; }
|
|
double kh() const { return m_kh; }
|
|
double skinFactor() const { return m_skinFactor; }
|
|
double dFactor() const { return m_dFactor; }
|
|
CellDirection direction() const { return m_direction; }
|
|
size_t count() const { return m_count; }
|
|
|
|
private:
|
|
std::vector<RigCompletionMetaData> m_metadata;
|
|
QString m_wellName;
|
|
IJKCellIndex m_cellIndex;
|
|
WellConnectionState m_connectionState;
|
|
double m_saturation;
|
|
double m_transmissibility;
|
|
double m_diameter;
|
|
double m_kh;
|
|
double m_skinFactor;
|
|
double m_dFactor;
|
|
CellDirection m_direction;
|
|
|
|
// Number of parts that have contributed to this completion
|
|
size_t m_count;
|
|
|
|
private:
|
|
static bool onlyOneIsDefaulted(double first, double second);
|
|
static void copy(RigCompletionData& target, const RigCompletionData& from);
|
|
};
|