#1230 Added infrastructure for loadAndUpdate of StimPlan data

This commit is contained in:
Magne Sjaastad
2017-02-17 09:29:46 +01:00
parent aef913739c
commit 81c92d2781
7 changed files with 94 additions and 7 deletions

View File

@@ -75,3 +75,17 @@ size_t RigStimPlanFractureDefinition::getTimeStepIndex(double timeStepValue)
}
return -1; //returns -1 if not found
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
std::vector<QString> RigStimPlanFractureDefinition::resultNames() const
{
std::vector<QString> names;
names.push_back("Conductivity");
names.push_back("Permeability");
names.push_back("Width");
return names;
}

View File

@@ -48,6 +48,7 @@ public:
size_t getTimeStepIndex(double timeStepValue);
std::vector<QString> resultNames() const;
};