From 941df67e24c1a215189bab961ca92be74670b4d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A5rd=20Skaflestad?= Date: Wed, 14 Apr 2021 16:35:11 +0200 Subject: [PATCH] Identify More Connection Restart Items In particular, add named items for cumulative production and injection in the XCON array. These are needed in order to generate continuous connection-level curves in restarted runs. While here, also add a named item for the well-level cumulative oil injection quantity. --- opm/output/eclipse/VectorItems/connection.hpp | 14 +++++++++++++- opm/output/eclipse/VectorItems/well.hpp | 1 + 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/opm/output/eclipse/VectorItems/connection.hpp b/opm/output/eclipse/VectorItems/connection.hpp index 24e352f7c..2cbca3fc0 100644 --- a/opm/output/eclipse/VectorItems/connection.hpp +++ b/opm/output/eclipse/VectorItems/connection.hpp @@ -67,13 +67,25 @@ namespace Opm { namespace RestartIO { namespace Helpers { namespace VectorItems WaterRate = 1, // Surface flow rate (water) GasRate = 2, // Surface Flow rate (gas) + OilPrTotal = 3, // Total cumulative oil production + WatPrTotal = 4, // Total cumulative water production + GasPrTotal = 5, // Total cumulative gas production + + OilInjTotal = 6, // Total cumulative oil injection + WatInjTotal = 7, // Total cumulative water injection + GasInjTotal = 8, // Total cumulative gas injection + + GORatio = 10, // Producing gas/oil ratio + OilRate_Copy = 17, // Surface flow rate (oil) WaterRate_Copy = 18, // Surface flow rate (water) GasRate_Copy = 19, // Surface Flow rate (gas) Pressure = 34, // Connection pressure value - ResVRate = 49, // Reservoir voidage rate + ResVRate = 49, // Reservoir voidage rate + VoidPrTotal = 50, // Total cumulative reservoir voidage volume production + VoidInjTotal = 51, // Total cumulative reservoir voidage volume injection }; } // XConn }}}} // Opm::RestartIO::Helpers::VectorItems diff --git a/opm/output/eclipse/VectorItems/well.hpp b/opm/output/eclipse/VectorItems/well.hpp index c1258ade1..5cbbe3c2e 100644 --- a/opm/output/eclipse/VectorItems/well.hpp +++ b/opm/output/eclipse/VectorItems/well.hpp @@ -202,6 +202,7 @@ namespace Opm { namespace RestartIO { namespace Helpers { namespace VectorItems VoidPrTotal = 21, // Well's total cumulative reservoir // voidage production + OilInjTotal = 22, // Well's total cumulative oil injection WatInjTotal = 23, // Well's total cumulative water injection GasInjTotal = 24, // Well's total cumulative gas injection VoidInjTotal = 25, // Well's total cumulative reservoir volume injection