-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adapted perforation strategy to allow for layering + bug fixes (#296)
* src/flownet/data/perforation_strategy.py * LAYER_ID now recognized in bottom_point, top_point, multiple and multiple_based_on_workovers perforation strategies * Only wells in layer loop * Changed multiple function in perforation_strategy.py to work correctly and added test data to a csv * Bugfix in boundingbox of foreign connections * Updated unit test to also test synthetic well K, which penetrates both layers * Added changelog item Co-authored-by: Wouter J. de Bruin <[email protected]>
- Loading branch information
Showing
4 changed files
with
117 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
WELL_NAME,X,Y,Z,DATE,OPEN,LAYER_ID | ||
A,1.0,1.0,1.0,2021-01-12 09:53:52.832254,True,0 | ||
A,2.0,2.0,2.0,2021-01-12 09:53:52.832254,False,0 | ||
A,1.0,1.0,1.0,2021-01-13 09:53:52.832254,False,0 | ||
A,2.0,2.0,2.0,2021-01-13 09:53:52.832254,True,0 | ||
B,3.0,3.0,3.0,2021-01-12 09:53:52.832254,True,0 | ||
B,4.0,4.0,4.0,2021-01-12 09:53:52.832254,True,0 | ||
B,3.0,3.0,3.0,2021-01-13 09:53:52.832254,False,0 | ||
B,4.0,4.0,4.0,2021-01-13 09:53:52.832254,False,0 | ||
C,5.0,5.0,5.0,2021-01-13 09:53:52.832254,False,0 | ||
C,6.0,6.0,6.0,2021-01-13 09:53:52.832254,True,0 | ||
D,7.0,7.0,7.0,2021-01-11 09:53:52.832254,False,0 | ||
D,7.0,7.0,7.0,2021-01-12 09:53:52.832254,False,0 | ||
D,7.0,7.0,7.0,2021-01-13 09:53:52.832254,True,0 | ||
E,8.0,8.0,8.0,2021-01-11 09:53:52.832254,True,0 | ||
E,8.0,8.0,8.0,2021-01-13 09:53:52.832254,False,0 | ||
F,9.0,9.0,9.0,2021-01-13 09:53:52.832254,False,1 | ||
G,10.0,10.0,10.0,2021-01-11 09:53:52.832254,True,1 | ||
G,11.0,11.0,11.0,2021-01-11 09:53:52.832254,True,1 | ||
G,10.0,10.0,10.0,2021-01-12 09:53:52.832254,True,1 | ||
G,11.0,11.0,11.0,2021-01-12 09:53:52.832254,False,1 | ||
H,12.0,12.0,12.0,2021-01-11 09:53:52.832254,True,1 | ||
H,13.0,13.0,13.0,2021-01-11 09:53:52.832254,False,1 | ||
H,12.0,12.0,12.0,2021-01-12 09:53:52.832254,True,1 | ||
H,13.0,13.0,13.0,2021-01-12 09:53:52.832254,True,1 | ||
I,14.0,14.0,14.0,2021-01-11 09:53:52.832254,True,1 | ||
I,14.0,14.0,14.0,2021-01-12 09:53:52.832254,True,1 | ||
I,14.0,14.0,14.0,2021-01-13 09:53:52.832254,True,1 | ||
J,15.0,15.0,15.0,2021-01-11 09:53:52.832254,True,1 | ||
J,16.0,16.0,16.0,2021-01-11 09:53:52.832254,True,1 | ||
J,17.0,17.0,17.0,2021-01-11 09:53:52.832254,True,1 | ||
J,15.0,15.0,15.0,2021-01-13 09:53:52.832254,True,1 | ||
J,16.0,16.0,16.0,2021-01-13 09:53:52.832254,False,1 | ||
J,17.0,17.0,17.0,2021-01-13 09:53:52.832254,True,1 | ||
K,18.0,18.0,4.0,2021-01-12 09:53:52.832254,True,0 | ||
K,18.0,18.0,4.0,2021-01-13 09:53:52.832254,True,0 | ||
K,18.0,18.0,7.0,2021-01-12 09:53:52.832254,True,0 | ||
K,18.0,18.0,7.0,2021-01-13 09:53:52.832254,True,0 | ||
K,18.0,18.0,10.0,2021-01-12 09:53:52.832254,True,1 | ||
K,18.0,18.0,10.0,2021-01-13 09:53:52.832254,True,1 | ||
K,18.0,18.0,12.0,2021-01-12 09:53:52.832254,True,1 | ||
K,18.0,18.0,12.0,2021-01-13 09:53:52.832254,True,1 |
Oops, something went wrong.