Skip to content

Commit 3c4b5cf

Browse files
committed
Working example with PROD well included
1 parent 209479f commit 3c4b5cf

6 files changed

Lines changed: 30 additions & 11 deletions

File tree

examples/rft_example/resources/SPE1.DATA.jinja2

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ WELLDIMS
5656
-- - we are dealing with only one 'group'
5757
-- Item 4: maximum number of wells in any one group
5858
-- - there must be two wells in a group as there are two wells in total
59-
2 1 1 2 /
59+
2 3 1 2 /
6060

6161
UNIFOUT
6262

@@ -72,6 +72,15 @@ INIT
7272
-- -------------------------------------------------------------------------
7373
NOECHO
7474

75+
-- Resdata does not like cells that are close to origio so
76+
-- we need to move the regular grid away from origo. By
77+
-- default the mapaxes are applied with resdata and GEN_DATARFT uses
78+
-- the default
79+
-- ---------------- MAPAXES -----------------
80+
-- X1 Y1 X2 Y2 X3 Y3
81+
MAPAXES
82+
0.01 1.01 0.01 0.01 1.01 0.01 /
83+
7584
DX
7685
-- There are in total 300 cells with length 1000ft in x-direction
7786
300*1000 /
@@ -383,19 +392,21 @@ RPTRST
383392

384393
WELSPECS
385394
-- Item #: 1 2 3 4 5 6
386-
'PROD' 'G1' 10 10 8400 'OIL' /
395+
'PROD' 'G1' 1* 1* 8400 'OIL' /
387396
'INJ' 'G1' 1 1 8335 'GAS' /
388397
/
389398

390399
WRFTPLT
391-
'*' 'REPT' 'REPT' 'REPT' /
400+
'*' 'REPT' 'NO' 'NO' /
392401
/
393402
-- Coordinates in item 3-4 are retrieved from Odeh's figure 1 and 2
394403
-- Note that the depth at the midpoint of the well grid blocks
395404
-- has been used as reference depth for bottom hole pressure in item 5
396405

397406
COMPDAT
398407
-- Item #: 1 2 3 4 5 6 7 8 9
408+
'PROD' 10 10 1 3 'OPEN' 1* 1* 0.5 /
409+
'PROD' 10 10 2 3 'OPEN' 1* 1* 0.5 /
399410
'PROD' 10 10 3 3 'OPEN' 1* 1* 0.5 /
400411
'INJ' 1 1 1 1 'OPEN' 1* 1* 0.5 /
401412
/

examples/rft_example/resources/trajectories/INJ.obs

Lines changed: 0 additions & 1 deletion
This file was deleted.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
10000.0 10000.0 8335.0 8335.0 Zone1
1+
500.0 500.0 8335.0 8335.0 Zone1
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
9500.0 9500.0 8335.0 8335.0 Zone1
2+
9500.0 9500.0 8360.0 8360.0 Zone1
3+
9500.0 9500.0 8400.0 8400.0 Zone1
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
INJ 2015-01-01 1
2+
PROD 2015-01-01 1

examples/rft_example/rft.ert

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,17 @@ FORWARD_MODEL TEMPLATE_RENDER( \
2323
FORWARD_MODEL FLOW
2424

2525
FORWARD_MODEL GENDATA_RFT(\
26-
<PATH_TO_TRAJECTORY_FILES>=./resources/trajectories, \
27-
<WELL_AND_TIME_FILE>=./resources/well_date_rft.txt, \
28-
<ZONEMAP>=./resources/layer_zone_table.txt, \
29-
<CSVFILE>=<RUNPATH>/share/gendata_rft.csv \
26+
<PATH_TO_TRAJECTORY_FILES>=<CONFIG_PATH>/resources/trajectories, \
27+
<WELL_AND_TIME_FILE>=<CONFIG_PATH>/resources/well_date_rft.txt, \
28+
<ZONEMAP>=<CONFIG_PATH>/resources/layer_zone_table.txt, \
29+
<CSVFILE>=<RUNPATH>/gendata_rft.csv \
3030
)
3131
GEN_DATA \
32-
INJE_RFT \
33-
RESULT_FILE:RFT_INJE_%d \
32+
INJ_RFT \
33+
RESULT_FILE:RFT_INJ_%d \
34+
REPORT_STEPS:1
35+
36+
GEN_DATA \
37+
PROD_RFT \
38+
RESULT_FILE:RFT_PROD_%d \
3439
REPORT_STEPS:1

0 commit comments

Comments
 (0)