mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Improve well path target configuration (#8570)
Improve the scripting possibilities for well targets Added tests and examples
This commit is contained in:
@@ -27,10 +27,13 @@ class RiaLineArcWellPathCalculator
|
||||
public:
|
||||
struct WellTarget
|
||||
{
|
||||
bool isAnyDirectionFixed() const { return isAzimuthConstrained || isInclinationConstrained; }
|
||||
|
||||
cvf::Vec3d targetPointXYZ;
|
||||
bool isTangentConstrained;
|
||||
double azimuth;
|
||||
double inclination;
|
||||
bool isAzimuthConstrained;
|
||||
bool isInclinationConstrained;
|
||||
double azimuthRadians;
|
||||
double inclinationRadians;
|
||||
|
||||
double radius1;
|
||||
double radius2;
|
||||
@@ -41,9 +44,8 @@ public:
|
||||
|
||||
struct WellTargetStatus
|
||||
{
|
||||
bool hasDerivedTangent;
|
||||
double resultAzimuth;
|
||||
double resultInclination;
|
||||
double resultAzimuthRadians;
|
||||
double resultInclinationRadians;
|
||||
|
||||
bool isRadius1Editable;
|
||||
bool hasOverriddenRadius1;
|
||||
|
||||
Reference in New Issue
Block a user