#3713 Fracture header : Add computation of matrix permeability

This commit is contained in:
Magne Sjaastad 2018-11-21 13:43:15 +01:00
parent 2912059922
commit bc12dc44eb
2 changed files with 12 additions and 0 deletions

View File

@ -176,6 +176,16 @@ double RigFractureTransmissibilityEquations::effectiveMatrixToWellTransPDDHC(dou
return 0.0;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
double RigFractureTransmissibilityEquations::matrixPermeability(double permx, double permy, double NTG)
{
double permxy = cvf::Math::sqrt(permx * permy);
return permxy * NTG;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------

View File

@ -63,6 +63,8 @@ public:
static double effectiveMatrixToWellTransPDDHC(double sumOriginalMatrixToFractureTrans,
double effectiveInternalFractureToWellTrans);
static double matrixPermeability(double permx, double permy, double NTG);
private:
static double centerToEdgeFractureCellTrans(double conductivity,
double sideLengthParallellTrans,