mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#5657 Add combined Production and Injection visualization for Well Disks.
This commit is contained in:
committed by
Magne Sjaastad
parent
0f470aad97
commit
08f560a058
@@ -37,22 +37,33 @@ public:
|
||||
void setSingleProperty( const std::string& singleProperty );
|
||||
|
||||
void setOilProperty( const std::string& oilProperty );
|
||||
std::string getOilProperty() const;
|
||||
std::string getOilProperty( bool isInjector ) const;
|
||||
|
||||
void setGasProperty( const std::string& gasProperty );
|
||||
std::string getGasProperty() const;
|
||||
std::string getGasProperty( bool isInjector ) const;
|
||||
|
||||
void setWaterProperty( const std::string& waterProperty );
|
||||
std::string getWaterProperty() const;
|
||||
std::string getWaterProperty( bool isInjector ) const;
|
||||
|
||||
void setOilProperty( const std::string& oilPropertyProducer, const std::string& oilPropertyInjector );
|
||||
void setGasProperty( const std::string& gasPropertyProducer, const std::string& gasPropertyInjector );
|
||||
void setWaterProperty( const std::string& waterPropertyProducer, const std::string& waterPropertyInjector );
|
||||
|
||||
RimSummaryCase* sourceCase() const;
|
||||
void setSourceCase( RimSummaryCase* summaryCase );
|
||||
|
||||
private:
|
||||
bool m_isSingleProperty;
|
||||
std::string m_singleProperty;
|
||||
std::string m_oilProperty;
|
||||
std::string m_gasProperty;
|
||||
std::string m_waterProperty;
|
||||
bool m_isSingleProperty;
|
||||
std::string m_singleProperty;
|
||||
|
||||
bool m_isCombinedProductionAndInjection;
|
||||
std::string m_oilProperty;
|
||||
std::string m_gasProperty;
|
||||
std::string m_waterProperty;
|
||||
|
||||
std::string m_oilPropertyInjector;
|
||||
std::string m_gasPropertyInjector;
|
||||
std::string m_waterPropertyInjector;
|
||||
|
||||
RimSummaryCase* m_summaryCase;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user