mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-10 08:03:05 -06:00
#1716 Fixing error in Peaceman formula
This commit is contained in:
parent
ffdafcfb97
commit
fcfe0eb4a9
@ -33,8 +33,8 @@ double RigTransmissibilityEquations::peacemanRadius(double permeabilityNormalDir
|
||||
double cellSizeNormalDirection2)
|
||||
{
|
||||
double nominator = cvf::Math::sqrt(
|
||||
pow(cellSizeNormalDirection2, 2) + pow(permeabilityNormalDirection1 / permeabilityNormalDirection2, 1 / 2)
|
||||
+ pow(cellSizeNormalDirection1, 2) + pow(permeabilityNormalDirection2 / permeabilityNormalDirection1, 1 / 2));
|
||||
pow(cellSizeNormalDirection2, 2) * pow(permeabilityNormalDirection1 / permeabilityNormalDirection2, 1 / 2)
|
||||
+ pow(cellSizeNormalDirection1, 2) * pow(permeabilityNormalDirection2 / permeabilityNormalDirection1, 1 / 2));
|
||||
|
||||
double denominator = pow((permeabilityNormalDirection1 / permeabilityNormalDirection2), 1 / 4)
|
||||
+ pow((permeabilityNormalDirection2 / permeabilityNormalDirection1), 1 / 4);
|
||||
|
Loading…
Reference in New Issue
Block a user