add the keywords required to specify the initial reservoir temperature

E100 does not know about TEMPI, but it is wise not to use the
geothermal gradient directly, but to go over the "temperature at
cell-center" detour as specified by the E300 TEMPI keyword. The depth
vs. temperature table is given by the RTEMPVD keyword. The intend is
that if TEMPI stays unspecified the temperature is calculated at each
cell center and the result is put into TEMPI from where it gets picked
up by the simulator.

(Note that E300 says that TEMPVD is an alias for RTEMPVD even though
the possible sections of these two do not exhibit any overlap, WTF?)
This commit is contained in:
Andreas Lauser 2014-12-01 18:24:47 +01:00
parent b1de0bf338
commit fdd66d911c
4 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,18 @@
{
"name" : "RTEMPVD",
"sections" : [ "PROPS", "SOLUTION" ],
"size" : {
"keyword" : "EQLDIMS" ,
"item" : "NTEQUL"
},
"items" : [
{
"name":"DATA",
"value_type":"DOUBLE",
"size_type" : "ALL",
"dimension" : ["Length","Temperature"]
}
]
}

View File

@ -0,0 +1 @@
{"name" : "TEMP", "sections" : ["RUNSPEC"]}

View File

@ -0,0 +1,8 @@
{
"name": "TEMPI",
"sections": ["SOLUTION"],
"data": {
"value_type": "DOUBLE",
"dimension" : "Temperature"
}
}

View File

@ -0,0 +1,18 @@
{
"name" : "TEMPVD",
"sections" : [ "PROPS", "SOLUTION" ],
"size" : {
"keyword" : "EQLDIMS" ,
"item" : "NTEQUL"
},
"items" : [
{
"name":"DATA",
"value_type":"DOUBLE",
"size_type" : "ALL",
"dimension" : ["Length","Temperature"]
}
]
}