#3089 Non-Darcy longitudinal : Add support for longitudinal fractures

- move non-darcy data from template to fracture, as this data is now depending of fracutre
- compute weighted average of stimplan width and conductivity based on fracture perforation length
- use referringPtrFields() to find fractures using this fracture template
This commit is contained in:
Magne Sjaastad
2018-08-15 09:44:27 +02:00
parent 4c75e2514d
commit 2ddc3d77df
11 changed files with 391 additions and 212 deletions

View File

@@ -41,6 +41,11 @@ public:
double hlength;
double vlength;
int endpointCount;
double computeLength() const
{
return cvf::Math::sqrt(hlength * hlength + vlength * vlength);
}
};
RigWellPathStimplanIntersector(const RigWellPath* wellpathGeom, const RimFracture* rimFracture);