Skip to content

Commit 3930acd

Browse files
committed
Enable Saving Segment Related Information In Runtime Connections
In particular, create data members for storing the segment number and the tubing lengths. It is likely that we'll need to amend this information as need arises.
1 parent a10791d commit 3930acd

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

opm/simulators/wells/RuntimePerforation.hpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,12 @@ struct RuntimePerforation
3535

3636
/// Depth at which the new connection is created.
3737
double depth{};
38+
39+
/// Segment number (1-based), if applicable (MS well).
40+
int segment{};
41+
42+
/// MD start/end along branch if applicable (MS well).
43+
std::optional<std::pair<double, double>> perf_range{};
3844
};
3945

4046
} // namespace Opm

0 commit comments

Comments
 (0)