mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-09 15:43:07 -06:00
#3713 Fracture header : Add computation of matrix permeability
This commit is contained in:
parent
2912059922
commit
bc12dc44eb
@ -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;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user