mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Support Block-Level Phase Density Summary Vectors
In particular, add support for the BxDEN and BDENx summary vectors (x = {O, G, W}). The latter are alternative spellings of the former keywords.
This commit is contained in:
parent
6868382cde
commit
4ac439475b
@ -797,6 +797,12 @@ public:
|
||||
val.second = getValue(fs.viscosity(gasPhaseIdx));
|
||||
else if (key.first == "BVOIL" || key.first == "BOVIS")
|
||||
val.second = getValue(fs.viscosity(oilPhaseIdx));
|
||||
else if ((key.first == "BODEN") || (key.first == "BDENO"))
|
||||
val.second = getValue(fs.density(oilPhaseIdx));
|
||||
else if ((key.first == "BGDEN") || (key.first == "BDENG"))
|
||||
val.second = getValue(fs.density(gasPhaseIdx));
|
||||
else if ((key.first == "BWDEN") || (key.first == "BDENW"))
|
||||
val.second = getValue(fs.density(waterPhaseIdx));
|
||||
else if ((key.first == "BRPV") ||
|
||||
(key.first == "BOPV") ||
|
||||
(key.first == "BWPV") ||
|
||||
|
Loading…
Reference in New Issue
Block a user