mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-09 23:53:04 -06:00
#1716 Fix spelling
This commit is contained in:
parent
fcfe0eb4a9
commit
ef8fc3dbc6
@ -32,14 +32,14 @@ double RigTransmissibilityEquations::peacemanRadius(double permeabilityNormalDir
|
||||
double cellSizeNormalDirection1,
|
||||
double cellSizeNormalDirection2)
|
||||
{
|
||||
double nominator = cvf::Math::sqrt(
|
||||
double numerator = cvf::Math::sqrt(
|
||||
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);
|
||||
|
||||
double r0 = 0.28 * nominator / denominator;
|
||||
double r0 = 0.28 * numerator / denominator;
|
||||
|
||||
return r0;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user