-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy pathwell_geometry_classes.plantuml
54 lines (36 loc) · 1.12 KB
/
well_geometry_classes.plantuml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
@startuml
class RimView
class RimOilField
class RimEclipseCaseCollection
class RimCase
class RimWellPath
class RimWellPathCollection
RimProject *--> RimOilField
RimOilField *--> RimWellPathCollection
RimOilField *--> RimEclipseCaseCollection
RimEclipseCaseCollection *--> "n" RimEclipseCase
RimWellPathCollection *--> "n" RimWellPath
RimSimWellInViewCollection *--> "n" RimSimWellInView
RimView <|-- RimEclipseView
RimCase <|-- RimEclipseCase
RimEclipseCase *--> "n" RimEclipseView
RimEclipseView *-> RimSimWellInViewCollection
class RigWellPath {
std::vector<cvf::Vec3d> m_wellPathPoints;
std::vector<double> m_measuredDepths;
}
class RimWellPath {
Represents reference to a file containing points along a curve
for the center line of the physical well path
}
RimWellPath *-> RigWellPath
class RimSimWellInView {
Represents a collection of cubes the simulation
well passes through
}
class RigSimulationWellCenterLineCalculator {
Can compute a RigWellPath based on a RigSimWellData
}
RigSimulationWellCenterLineCalculator ...> RigWellPath
RigSimulationWellCenterLineCalculator ...> RigSimWellData
@enduml