mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#3412 Non-Darcy Perf intervals : Separate calculation of transmissibility and permeability
This commit is contained in:
@@ -56,6 +56,20 @@ double RigTransmissibilityEquations::totalConnectionFactor(double transX, double
|
||||
return cvf::Math::sqrt(pow(transX, 2.0) + pow(transY, 2.0) + pow(transZ, 2.0));
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
double RigTransmissibilityEquations::totalPermeability(const double permx, const double permy, const double permz)
|
||||
{
|
||||
const double kx = cvf::Math::sqrt(permy * permz);
|
||||
const double ky = cvf::Math::sqrt(permx * permz);
|
||||
const double kz = cvf::Math::sqrt(permy * permx);
|
||||
|
||||
const double totalPerm = cvf::Math::sqrt(kx * kx + ky * ky + kz * kz);
|
||||
|
||||
return totalPerm;
|
||||
}
|
||||
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
///
|
||||
//--------------------------------------------------------------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user