#3753 : Non-Darcy perforations : Add calculation of effective height

This commit is contained in:
Magne Sjaastad
2018-11-26 09:40:58 +01:00
parent 40f466fb0c
commit 268fc4f368
2 changed files with 66 additions and 14 deletions

View File

@@ -38,12 +38,21 @@ public:
static double totalConnectionFactor(double transX, double transY, double transZ);
static double totalPermeability(double cellPermX,
double cellPermY,
double cellPermZ,
const cvf::Vec3d& internalCellLengths,
double lateralNtg,
double ntg);
static double totalKh(double cellPermX,
double cellPermY,
double cellPermZ,
const cvf::Vec3d& internalCellLengths,
double lateralNtg,
double ntg);
static double effectiveK(double cellPermX,
double cellPermY,
double cellPermZ,
const cvf::Vec3d& internalCellLengths,
double lateralNtg,
double ntg);
static double effectiveH(const cvf::Vec3d& internalCellLengths, double lateralNtg, double ntg);
static double permeability(const double conductivity, const double width);