#6364 Add more default values and export for Stimplan detailed fluid loss.

Added in this commit:
* Relative Permeabilty factor
* Poro-Elastic Constant
* Thermal Expansion Coefficient.
This commit is contained in:
Kristian Bendiksen
2020-08-25 16:04:34 +02:00
parent d0322a98ba
commit 1b5be32994
7 changed files with 81 additions and 4 deletions

View File

@@ -599,7 +599,7 @@ std::vector<double> RimFractureModelPlot::calculateTemperature() const
//--------------------------------------------------------------------------------------------------
std::vector<double> RimFractureModelPlot::calculateRelativePermeabilityFactor() const
{
return std::vector<double>();
return findCurveAndComputeLayeredAverage( RiaDefines::CurveProperty::RELATIVE_PERMEABILITY_FACTOR );
}
//--------------------------------------------------------------------------------------------------
@@ -607,7 +607,7 @@ std::vector<double> RimFractureModelPlot::calculateRelativePermeabilityFactor()
//--------------------------------------------------------------------------------------------------
std::vector<double> RimFractureModelPlot::calculatePoroElasticConstant() const
{
return std::vector<double>();
return findCurveAndComputeLayeredAverage( RiaDefines::CurveProperty::PORO_ELASTIC_CONSTANT );
}
//--------------------------------------------------------------------------------------------------
@@ -615,5 +615,5 @@ std::vector<double> RimFractureModelPlot::calculatePoroElasticConstant() const
//--------------------------------------------------------------------------------------------------
std::vector<double> RimFractureModelPlot::calculateThermalExpansionCoefficient() const
{
return std::vector<double>();
return findCurveAndComputeLayeredAverage( RiaDefines::CurveProperty::THERMAL_EXPANSION_COEFFISIENT );
}