2017-04-25 08:22:30 -05:00
|
|
|
@startuml
|
|
|
|
|
|
|
|
Title Classes related to fractures
|
|
|
|
|
|
|
|
note as N1
|
|
|
|
Updated 2017-04-21
|
|
|
|
end note
|
|
|
|
|
|
|
|
class RimFracture {
|
|
|
|
todo...()
|
|
|
|
}
|
|
|
|
|
|
|
|
class RimSimWellFracture {
|
|
|
|
}
|
|
|
|
class RimWellPathFracture {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RimFracture <|-- RimSimWellFracture
|
|
|
|
RimFracture <|-- RimWellPathFracture
|
|
|
|
|
|
|
|
class RigFracture{
|
|
|
|
std::vector<cvf::uint> m_triangleIndices;
|
|
|
|
std::vector<cvf::Vec3f> m_nodeCoords;
|
|
|
|
|
2017-05-11 05:24:57 -05:00
|
|
|
std::vector<RigStimPlanFractureCell> m_stimPlanCellsFractureData;
|
2017-04-25 08:22:30 -05:00
|
|
|
}
|
|
|
|
|
2017-05-11 05:24:57 -05:00
|
|
|
class RigStimPlanFractureCell{
|
2017-04-25 08:22:30 -05:00
|
|
|
size_t m_i;
|
|
|
|
size_t m_j;
|
2017-05-11 07:37:05 -05:00
|
|
|
std::vector<size_t> globalIndeciesToContributingEclipseCells;
|
2017-04-25 08:22:30 -05:00
|
|
|
std::vector<double> contributingEclipseCellTransmisibilities;
|
|
|
|
}
|
|
|
|
|
|
|
|
RimFracture *-- RigFracture
|
2017-05-11 05:24:57 -05:00
|
|
|
RigFracture "1" *-- "n" RigStimPlanFractureCell
|
2017-04-25 08:22:30 -05:00
|
|
|
|
|
|
|
class RimFractureTemplate {
|
|
|
|
todo...()
|
|
|
|
}
|
|
|
|
|
|
|
|
class RimEllipseFractureTemplate {
|
|
|
|
}
|
|
|
|
class RimStimPlanFractureTemplate {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
RimFractureTemplate <|-- RimEllipseFractureTemplate
|
|
|
|
RimFractureTemplate <|-- RimStimPlanFractureTemplate
|
|
|
|
|
|
|
|
class RigStimPlanFractureDefinition{
|
|
|
|
std::vector<double> gridXs;
|
|
|
|
std::vector<double> gridYs;
|
|
|
|
std::vector<double> timeSteps;
|
|
|
|
std::vector<double> depths;
|
2017-05-11 07:37:05 -05:00
|
|
|
std::vector<RigStimPlanResultFrames> stimPlanData;
|
2017-04-25 08:22:30 -05:00
|
|
|
|
|
|
|
}
|
2017-05-11 05:24:57 -05:00
|
|
|
|
|
|
|
class RigStimPlanFracTemplateCell{
|
2017-04-25 08:22:30 -05:00
|
|
|
std::vector<cvf::Vec3d> m_polygon;
|
|
|
|
double m_displayValue;
|
|
|
|
double m_conductivityValue;
|
|
|
|
size_t m_i;
|
|
|
|
size_t m_j;
|
2017-05-26 07:10:00 -05:00
|
|
|
|
2017-04-25 08:22:30 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
RimStimPlanFractureTemplate "1" *-- "1" RigStimPlanFractureDefinition
|
2017-05-11 05:24:57 -05:00
|
|
|
RimStimPlanFractureTemplate "1" *-- "many" RigStimPlanFracTemplateCell
|
2017-04-25 08:22:30 -05:00
|
|
|
|
2017-05-16 01:46:52 -05:00
|
|
|
RigStimPlanFractureCell <.> RigStimPlanFracTemplateCell
|
2017-04-25 08:22:30 -05:00
|
|
|
|
2017-05-11 07:37:05 -05:00
|
|
|
class RigStimPlanResultFrames{
|
2017-04-25 08:22:30 -05:00
|
|
|
QString resultName;
|
|
|
|
QString unit;
|
|
|
|
std::vector<std::vector<std::vector<double>>> parameterValues;
|
|
|
|
//Vector for each time step, for each depth and for each x-value
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-05-11 07:37:05 -05:00
|
|
|
RigStimPlanFractureDefinition "1" *-- "1 for each property in StimPlan File" RigStimPlanResultFrames
|
2017-04-25 08:22:30 -05:00
|
|
|
|
|
|
|
|
|
|
|
class RigFractureTransCalc{
|
|
|
|
RimEclipseCase* m_case;
|
|
|
|
RimFracture* m_fracture;
|
|
|
|
RimDefines::UnitSystem m_unitForCalculation;
|
|
|
|
}
|
|
|
|
|
2017-05-16 01:46:52 -05:00
|
|
|
RigFractureTransCalc --> RimFracture
|
|
|
|
RigFractureTransCalc ..> RigStimPlanFracTemplateCell
|
|
|
|
RigFractureTransCalc ..> RigStimPlanFractureCell
|
2017-04-25 08:22:30 -05:00
|
|
|
|
|
|
|
|
|
|
|
class RifEclipseExportTools{
|
|
|
|
}
|
|
|
|
|
2017-05-16 01:46:52 -05:00
|
|
|
RifEclipseExportTools --> RigFractureTransCalc
|
2017-04-25 08:22:30 -05:00
|
|
|
|
2017-05-11 05:24:57 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-25 08:22:30 -05:00
|
|
|
@enduml
|