mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#2627 Export CF : kh is reported as zero
This commit is contained in:
@@ -611,6 +611,16 @@ double RimFractureTemplate::dFactor() const
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
double RimFractureTemplate::kh() const
|
||||
{
|
||||
// kh = permeability * h
|
||||
// conductivity = permeability * h
|
||||
|
||||
auto values = widthAndConductivityAtWellPathIntersection();
|
||||
if (values.m_conductivity != HUGE_VAL)
|
||||
{
|
||||
// If conductivity is found in stim plan file, use this directly
|
||||
return values.m_conductivity;
|
||||
}
|
||||
|
||||
return effectivePermeability() * fractureWidth();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user