added method to enable add of completionset
This commit is contained in:
parent
fa3686a526
commit
2f9d5f9e65
@ -212,6 +212,10 @@ namespace Opm {
|
||||
m_completions->add( time_step , newCompletionSet);
|
||||
}
|
||||
|
||||
void Well::addCompletionsSet(size_t time_step, const CompletionSetConstPtr newCompletionSet){
|
||||
m_completions->add(time_step, newCompletionSet);
|
||||
}
|
||||
|
||||
const std::string Well::getGroupName(size_t time_step) const {
|
||||
return m_groupName->get(time_step);
|
||||
}
|
||||
|
@ -74,6 +74,7 @@ namespace Opm {
|
||||
bool isInjector(size_t timeStep) const;
|
||||
void addWELSPECS(DeckRecordConstPtr deckRecord);
|
||||
void addCompletions(size_t time_step , const std::vector<CompletionPtr>& newCompletions);
|
||||
void addCompletionsSet(size_t time_step, const CompletionSetConstPtr newCompletionSet);
|
||||
CompletionSetConstPtr getCompletions(size_t timeStep) const;
|
||||
|
||||
void setProductionProperties(size_t timeStep , const WellProductionProperties properties);
|
||||
|
Loading…
Reference in New Issue
Block a user