2017-10-16 08:13:31 -05:00
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Copyright (C) 2017- Statoil ASA
|
2019-09-06 03:40:57 -05:00
|
|
|
|
//
|
2017-10-16 08:13:31 -05:00
|
|
|
|
// ResInsight is free software: you can redistribute it and/or modify
|
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
// (at your option) any later version.
|
2019-09-06 03:40:57 -05:00
|
|
|
|
//
|
2017-10-16 08:13:31 -05:00
|
|
|
|
// ResInsight is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
|
|
|
// WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE.
|
2019-09-06 03:40:57 -05:00
|
|
|
|
//
|
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2017-10-16 08:13:31 -05:00
|
|
|
|
// for more details.
|
|
|
|
|
//
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
#include "RiuSummaryVectorDescriptionMap.h"
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
|
///
|
2017-10-16 08:13:31 -05:00
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
|
RiuSummaryVectorDescriptionMap* RiuSummaryVectorDescriptionMap::instance()
|
|
|
|
|
{
|
|
|
|
|
static RiuSummaryVectorDescriptionMap* singleton = new RiuSummaryVectorDescriptionMap;
|
|
|
|
|
return singleton;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
|
///
|
2017-10-16 08:13:31 -05:00
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
|
RiuSummaryVectorInfo RiuSummaryVectorDescriptionMap::vectorInfo( const std::string& vectorName )
|
2017-10-16 08:13:31 -05:00
|
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
|
std::map<std::string, RiuSummaryVectorInfo>::iterator it = m_summaryToDescMap.find( vectorName );
|
2018-08-30 04:17:37 -05:00
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
if ( it != m_summaryToDescMap.end() )
|
2017-10-16 08:13:31 -05:00
|
|
|
|
{
|
|
|
|
|
return it->second;
|
|
|
|
|
}
|
2019-09-06 03:40:57 -05:00
|
|
|
|
else if ( vectorName.size() > 1 && vectorName[1] == 'U' )
|
2017-10-16 08:13:31 -05:00
|
|
|
|
{
|
2018-08-30 06:30:54 -05:00
|
|
|
|
// User defined vector name
|
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
std::string key = vectorName.substr( 0, 2 );
|
2017-10-16 08:13:31 -05:00
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
it = m_summaryToDescMap.find( key );
|
2017-10-16 08:13:31 -05:00
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
if ( it != m_summaryToDescMap.end() )
|
2017-10-16 08:13:31 -05:00
|
|
|
|
{
|
|
|
|
|
return it->second;
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-09-06 03:40:57 -05:00
|
|
|
|
else if ( vectorName.size() > 5 )
|
2018-08-30 06:30:54 -05:00
|
|
|
|
{
|
|
|
|
|
// Check for custom vector naming
|
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
std::string baseName = vectorName.substr( 0, 5 );
|
|
|
|
|
while ( baseName.back() == '_' )
|
|
|
|
|
baseName.pop_back();
|
|
|
|
|
|
|
|
|
|
it = m_summaryToDescMap.find( baseName );
|
|
|
|
|
|
|
|
|
|
if ( it != m_summaryToDescMap.end() )
|
2018-08-30 06:30:54 -05:00
|
|
|
|
{
|
|
|
|
|
return it->second;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-10-16 08:13:31 -05:00
|
|
|
|
|
2018-08-30 04:17:37 -05:00
|
|
|
|
return RiuSummaryVectorInfo();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
|
///
|
2018-08-30 04:17:37 -05:00
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
|
std::string RiuSummaryVectorDescriptionMap::vectorLongName( const std::string& vectorName,
|
|
|
|
|
bool returnVectorNameIfNotFound )
|
2018-08-30 04:17:37 -05:00
|
|
|
|
{
|
2019-09-06 03:40:57 -05:00
|
|
|
|
auto info = vectorInfo( vectorName );
|
|
|
|
|
return info.category != RifEclipseSummaryAddress::SUMMARY_INVALID || !returnVectorNameIfNotFound ? info.longName
|
|
|
|
|
: vectorName;
|
2018-08-30 04:17:37 -05:00
|
|
|
|
}
|
|
|
|
|
|
2017-10-16 08:13:31 -05:00
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
|
///
|
2017-10-16 08:13:31 -05:00
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
|
RiuSummaryVectorDescriptionMap::RiuSummaryVectorDescriptionMap()
|
|
|
|
|
{
|
|
|
|
|
populateFieldToInfoMap();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2019-09-06 03:40:57 -05:00
|
|
|
|
///
|
2017-10-16 08:13:31 -05:00
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
|
void RiuSummaryVectorDescriptionMap::populateFieldToInfoMap()
|
|
|
|
|
{
|
2018-08-30 04:17:37 -05:00
|
|
|
|
using A = RifEclipseSummaryAddress;
|
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
m_summaryToDescMap =
|
|
|
|
|
{{"FOPR", {A::SUMMARY_FIELD, "Oil Production Rate"}},
|
|
|
|
|
{"FOPRA", {A::SUMMARY_FIELD, "Oil Production Rate above GOC"}},
|
|
|
|
|
{"FOPRB", {A::SUMMARY_FIELD, "Oil Production Rate below GOC"}},
|
|
|
|
|
{"FOPTA", {A::SUMMARY_FIELD, "Oil Production Total above GOC"}},
|
|
|
|
|
{"FOPTB", {A::SUMMARY_FIELD, "Oil Production Total below GOC"}},
|
|
|
|
|
{"FOPR1", {A::SUMMARY_FIELD, "Oil Production Rate above GOC"}},
|
|
|
|
|
{"FOPR2", {A::SUMMARY_FIELD, "Oil Production Rate below GOC"}},
|
|
|
|
|
{"FOPT1", {A::SUMMARY_FIELD, "Oil Production Total above GOC"}},
|
|
|
|
|
{"FOPT2", {A::SUMMARY_FIELD, "Oil Production Total below GOC"}},
|
|
|
|
|
{"FOMR", {A::SUMMARY_FIELD, "Oil Mass Rate"}},
|
|
|
|
|
{"FOMT", {A::SUMMARY_FIELD, "Oil Mass Total"}},
|
|
|
|
|
{"FODN", {A::SUMMARY_FIELD, "Oil Density at Surface Conditions"}},
|
|
|
|
|
{"FOPRH", {A::SUMMARY_FIELD, "Oil Production Rate History"}},
|
|
|
|
|
{"FOPRT", {A::SUMMARY_FIELD, "Oil Production Rate Target/Limit"}},
|
|
|
|
|
{"FOPRF", {A::SUMMARY_FIELD, "Free Oil Production Rate"}},
|
|
|
|
|
{"FOPRS", {A::SUMMARY_FIELD, "Solution Oil Production Rate"}},
|
|
|
|
|
{"FOPT", {A::SUMMARY_FIELD, "Oil Production Total"}},
|
|
|
|
|
{"FOPTH", {A::SUMMARY_FIELD, "Oil Production Total History"}},
|
|
|
|
|
{"FOPTF", {A::SUMMARY_FIELD, "Free Oil Production Total"}},
|
|
|
|
|
{"FOPTS", {A::SUMMARY_FIELD, "Solution Oil Production Total"}},
|
|
|
|
|
{"FOIR", {A::SUMMARY_FIELD, "Oil Injection Rate"}},
|
|
|
|
|
{"FOIRH", {A::SUMMARY_FIELD, "Oil Injection Rate History"}},
|
|
|
|
|
{"FOIRT", {A::SUMMARY_FIELD, "Oil Injection Rate Target/Limit"}},
|
|
|
|
|
{"FOIT", {A::SUMMARY_FIELD, "Oil Injection Total"}},
|
|
|
|
|
{"FOITH", {A::SUMMARY_FIELD, "Oil Injection Total History"}},
|
|
|
|
|
{"FOPP", {A::SUMMARY_FIELD, "Oil Potential Production rate"}},
|
|
|
|
|
{"FOPP2", {A::SUMMARY_FIELD, "Oil Potential Production rate"}},
|
|
|
|
|
{"FOPI", {A::SUMMARY_FIELD, "Oil Potential Injection rate"}},
|
|
|
|
|
{"FOPI2", {A::SUMMARY_FIELD, "Oil Potential Injection rate"}},
|
|
|
|
|
{"FOVPR", {A::SUMMARY_FIELD, "Oil Voidage Production Rate"}},
|
|
|
|
|
{"FOVPT", {A::SUMMARY_FIELD, "Oil Voidage Production Total"}},
|
|
|
|
|
{"FOVIR", {A::SUMMARY_FIELD, "Oil Voidage Injection Rate"}},
|
|
|
|
|
{"FOVIT", {A::SUMMARY_FIELD, "Oil Voidage Injection Total"}},
|
|
|
|
|
{"FOnPR", {A::SUMMARY_FIELD, "nth separator stage oil rate"}},
|
|
|
|
|
{"FOnPT", {A::SUMMARY_FIELD, "nth separator stage oil total"}},
|
|
|
|
|
{"FEOR", {A::SUMMARY_FIELD, "Export Oil Rate"}},
|
|
|
|
|
{"FEOT", {A::SUMMARY_FIELD, "Export Oil Total"}},
|
|
|
|
|
{"FEOMF", {A::SUMMARY_FIELD, "Export Oil Mole Fraction"}},
|
|
|
|
|
{"FWPR", {A::SUMMARY_FIELD, "Water Production Rate"}},
|
|
|
|
|
{"FWMR", {A::SUMMARY_FIELD, "Water Mass Rate"}},
|
|
|
|
|
{"FWMT", {A::SUMMARY_FIELD, "Water Mass Total"}},
|
|
|
|
|
{"FWPRH", {A::SUMMARY_FIELD, "Water Production Rate History"}},
|
|
|
|
|
{"FWPRT", {A::SUMMARY_FIELD, "Water Production Rate Target/Limit"}},
|
|
|
|
|
{"FWPT", {A::SUMMARY_FIELD, "Water Production Total"}},
|
|
|
|
|
{"FWPTH", {A::SUMMARY_FIELD, "Water Production Total History"}},
|
|
|
|
|
{"FWIR", {A::SUMMARY_FIELD, "Water Injection Rate"}},
|
|
|
|
|
{"FWIRH", {A::SUMMARY_FIELD, "Water Injection Rate History"}},
|
|
|
|
|
{"FWIRT", {A::SUMMARY_FIELD, "Water Injection Rate Target/Limit"}},
|
|
|
|
|
{"FWIT", {A::SUMMARY_FIELD, "Water Injection Total"}},
|
|
|
|
|
{"FWITH", {A::SUMMARY_FIELD, "Water Injection Total History"}},
|
|
|
|
|
{"FWPP", {A::SUMMARY_FIELD, "Water Potential Production rate"}},
|
|
|
|
|
{"FWPP2", {A::SUMMARY_FIELD, "Water Potential Production rate"}},
|
|
|
|
|
{"FWPI", {A::SUMMARY_FIELD, "Water Potential Injection rate"}},
|
|
|
|
|
{"FWPI2", {A::SUMMARY_FIELD, "Water Potential Injection rate"}},
|
|
|
|
|
{"FWVPR", {A::SUMMARY_FIELD, "Water Voidage Production Rate"}},
|
|
|
|
|
{"FWVPT", {A::SUMMARY_FIELD, "Water Voidage Production Total"}},
|
|
|
|
|
{"FWVIR", {A::SUMMARY_FIELD, "Water Voidage Injection Rate"}},
|
|
|
|
|
{"FWVIT", {A::SUMMARY_FIELD, "Water Voidage Injection Total"}},
|
|
|
|
|
{"FWPIR", {A::SUMMARY_FIELD, "Ratio of produced water to injected water (percentage)"}},
|
|
|
|
|
{"FWMPR", {A::SUMMARY_FIELD, "Water component molar production rate"}},
|
|
|
|
|
{"FWMPT", {A::SUMMARY_FIELD, "Water component molar production total"}},
|
|
|
|
|
{"FWMIR", {A::SUMMARY_FIELD, "Water component molar injection rate"}},
|
|
|
|
|
{"FWMIT", {A::SUMMARY_FIELD, "Water component molar injection total"}},
|
|
|
|
|
{"FGPR", {A::SUMMARY_FIELD, "Gas Production Rate"}},
|
|
|
|
|
{"FGPRA", {A::SUMMARY_FIELD, "Gas Production Rate above"}},
|
|
|
|
|
{"FGPRB", {A::SUMMARY_FIELD, "Gas Production Rate below"}},
|
|
|
|
|
{"FGPTA", {A::SUMMARY_FIELD, "Gas Production Total above"}},
|
|
|
|
|
{"FGPTB", {A::SUMMARY_FIELD, "Gas Production Total below"}},
|
|
|
|
|
{"FGPR1", {A::SUMMARY_FIELD, "Gas Production Rate above GOC"}},
|
|
|
|
|
{"FGPR2", {A::SUMMARY_FIELD, "Gas Production Rate below GOC"}},
|
|
|
|
|
{"FGPT1", {A::SUMMARY_FIELD, "Gas Production Total above GOC"}},
|
|
|
|
|
{"FGPT2", {A::SUMMARY_FIELD, "Gas Production Total below GOC"}},
|
|
|
|
|
{"FGMR", {A::SUMMARY_FIELD, "Gas Mass Rate"}},
|
|
|
|
|
{"FGMT", {A::SUMMARY_FIELD, "Gas Mass Total"}},
|
|
|
|
|
{"FGDN", {A::SUMMARY_FIELD, "Gas Density at Surface Conditions"}},
|
|
|
|
|
{"FGPRH", {A::SUMMARY_FIELD, "Gas Production Rate History"}},
|
|
|
|
|
{"FGPRT", {A::SUMMARY_FIELD, "Gas Production Rate Target/Limit"}},
|
|
|
|
|
{"FGPRF", {A::SUMMARY_FIELD, "Free Gas Production Rate"}},
|
|
|
|
|
{"FGPRS", {A::SUMMARY_FIELD, "Solution Gas Production Rate"}},
|
|
|
|
|
{"FGPT", {A::SUMMARY_FIELD, "Gas Production Total"}},
|
|
|
|
|
{"FGPTH", {A::SUMMARY_FIELD, "Gas Production Total History"}},
|
|
|
|
|
{"FGPTF", {A::SUMMARY_FIELD, "Free Gas Production Total"}},
|
|
|
|
|
{"FGPTS", {A::SUMMARY_FIELD, "Solution Gas Production Total"}},
|
|
|
|
|
{"FGIR", {A::SUMMARY_FIELD, "Gas Injection Rate"}},
|
|
|
|
|
{"FGIRH", {A::SUMMARY_FIELD, "Gas Injection Rate History"}},
|
|
|
|
|
{"FGIRT", {A::SUMMARY_FIELD, "Gas Injection Rate Target/Limit"}},
|
|
|
|
|
{"FGIT", {A::SUMMARY_FIELD, "Gas Injection Total"}},
|
|
|
|
|
{"FGITH", {A::SUMMARY_FIELD, "Gas Injection Total History"}},
|
|
|
|
|
{"FGPP", {A::SUMMARY_FIELD, "Gas Potential Production rate"}},
|
|
|
|
|
{"FGPP2", {A::SUMMARY_FIELD, "Gas Potential Production rate"}},
|
|
|
|
|
{"FGPPS", {A::SUMMARY_FIELD, "Solution"}},
|
|
|
|
|
{"FGPPS2", {A::SUMMARY_FIELD, "Solution"}},
|
|
|
|
|
{"FGPPF", {A::SUMMARY_FIELD, "Free Gas Potential Production rate"}},
|
|
|
|
|
{"FGPPF2", {A::SUMMARY_FIELD, "Free Gas Potential Production rate"}},
|
|
|
|
|
{"FGPI", {A::SUMMARY_FIELD, "Gas Potential Injection rate"}},
|
|
|
|
|
{"FGPI2", {A::SUMMARY_FIELD, "Gas Potential Injection rate"}},
|
|
|
|
|
{"FSGR", {A::SUMMARY_FIELD, "Sales Gas Rate"}},
|
|
|
|
|
{"FGSR", {A::SUMMARY_FIELD, "Sales Gas Rate"}},
|
|
|
|
|
{"FSGT", {A::SUMMARY_FIELD, "Sales Gas Total"}},
|
|
|
|
|
{"FGST", {A::SUMMARY_FIELD, "Sales Gas Total"}},
|
|
|
|
|
{"FSMF", {A::SUMMARY_FIELD, "Sales Gas Mole Fraction"}},
|
|
|
|
|
{"FFGR", {A::SUMMARY_FIELD, "Fuel Gas Rate, at and below this group"}},
|
|
|
|
|
{"FFGT", {A::SUMMARY_FIELD, "Fuel Gas cumulative Total, at and below this group"}},
|
|
|
|
|
{"FFMF", {A::SUMMARY_FIELD, "Fuel Gas Mole Fraction"}},
|
|
|
|
|
{"FGCR", {A::SUMMARY_FIELD, "Gas Consumption Rate, at and below this group"}},
|
|
|
|
|
{"FGCT", {A::SUMMARY_FIELD, "Gas Consumption Total, at and below this group"}},
|
|
|
|
|
{"FGIMR", {A::SUMMARY_FIELD, "Gas Import Rate, at and below this group"}},
|
|
|
|
|
{"FGIMT", {A::SUMMARY_FIELD, "Gas Import Total, at and below this group"}},
|
|
|
|
|
{"FGLIR", {A::SUMMARY_FIELD, "Gas Lift Injection Rate"}},
|
|
|
|
|
{"FWGPR", {A::SUMMARY_FIELD, "Wet Gas Production Rate"}},
|
|
|
|
|
{"FWGPT", {A::SUMMARY_FIELD, "Wet Gas Production Total"}},
|
|
|
|
|
{"FWGPRH", {A::SUMMARY_FIELD, "Wet Gas Production Rate History"}},
|
|
|
|
|
{"FWGIR", {A::SUMMARY_FIELD, "Wet Gas Injection Rate"}},
|
|
|
|
|
{"FWGIT", {A::SUMMARY_FIELD, "Wet Gas Injection Total"}},
|
|
|
|
|
{"FEGR", {A::SUMMARY_FIELD, "Export Gas Rate"}},
|
|
|
|
|
{"FEGT", {A::SUMMARY_FIELD, "Export Gas Total"}},
|
|
|
|
|
{"FEMF", {A::SUMMARY_FIELD, "Export Gas Mole Fraction"}},
|
|
|
|
|
{"FEXGR", {A::SUMMARY_FIELD, "Excess Gas Rate"}},
|
|
|
|
|
{"FEXGT", {A::SUMMARY_FIELD, "Excess Gas Total"}},
|
|
|
|
|
{"FRGR", {A::SUMMARY_FIELD, "Re-injection Gas Rate"}},
|
|
|
|
|
{"FRGT", {A::SUMMARY_FIELD, "Re-injection Gas Total"}},
|
|
|
|
|
{"FGnPR", {A::SUMMARY_FIELD, "nth separator stage gas rate"}},
|
|
|
|
|
{"FGnPT", {A::SUMMARY_FIELD, "nth separator stage gas total"}},
|
|
|
|
|
{"FGVPR", {A::SUMMARY_FIELD, "Gas Voidage Production Rate"}},
|
|
|
|
|
{"FGVPT", {A::SUMMARY_FIELD, "Gas Voidage Production Total"}},
|
|
|
|
|
{"FGVIR", {A::SUMMARY_FIELD, "Gas Voidage Injection Rate"}},
|
|
|
|
|
{"FGVIT", {A::SUMMARY_FIELD, "Gas Voidage Injection Total"}},
|
|
|
|
|
{"FGQ", {A::SUMMARY_FIELD, "Gas Quality"}},
|
|
|
|
|
{"FLPR", {A::SUMMARY_FIELD, "Liquid Production Rate"}},
|
|
|
|
|
{"FLPRH", {A::SUMMARY_FIELD, "Liquid Production Rate History"}},
|
|
|
|
|
{"FLPRT", {A::SUMMARY_FIELD, "Liquid Production Rate Target/Limit"}},
|
|
|
|
|
{"FLPT", {A::SUMMARY_FIELD, "Liquid Production Total"}},
|
|
|
|
|
{"FLPTH", {A::SUMMARY_FIELD, "Liquid Production Total History"}},
|
|
|
|
|
{"FVPR", {A::SUMMARY_FIELD, "Res Volume Production Rate"}},
|
|
|
|
|
{"FVPRT", {A::SUMMARY_FIELD, "Res Volume Production Rate Target/Limit"}},
|
|
|
|
|
{"FVPT", {A::SUMMARY_FIELD, "Res Volume Production Total"}},
|
|
|
|
|
{"FVIR", {A::SUMMARY_FIELD, "Res Volume Injection Rate"}},
|
|
|
|
|
{"FVIRT", {A::SUMMARY_FIELD, "Res Volume Injection Rate Target/Limit"}},
|
|
|
|
|
{"FVIT", {A::SUMMARY_FIELD, "Res Volume Injection Total"}},
|
|
|
|
|
{"FWCT", {A::SUMMARY_FIELD, "Water Cut"}},
|
|
|
|
|
{"FWCTH", {A::SUMMARY_FIELD, "Water Cut History"}},
|
|
|
|
|
{"FGOR", {A::SUMMARY_FIELD, "Gas-Oil Ratio"}},
|
|
|
|
|
{"FGORH", {A::SUMMARY_FIELD, "Gas-Oil Ratio History"}},
|
|
|
|
|
{"FOGR", {A::SUMMARY_FIELD, "Oil-Gas Ratio"}},
|
|
|
|
|
{"FOGRH", {A::SUMMARY_FIELD, "Oil-Gas Ratio History"}},
|
|
|
|
|
{"FWGR", {A::SUMMARY_FIELD, "Water-Gas Ratio"}},
|
|
|
|
|
{"FWGRH", {A::SUMMARY_FIELD, "Water-Gas Ratio History"}},
|
|
|
|
|
{"FGLR", {A::SUMMARY_FIELD, "Gas-Liquid Ratio"}},
|
|
|
|
|
{"FGLRH", {A::SUMMARY_FIELD, "Gas-Liquid Ratio History"}},
|
|
|
|
|
{"FMCTP", {A::SUMMARY_FIELD, "Mode of Control for group Production"}},
|
|
|
|
|
{"FMCTW", {A::SUMMARY_FIELD, "Mode of Control for group Water Injection"}},
|
|
|
|
|
{"FMCTG", {A::SUMMARY_FIELD, "Mode of Control for group Gas Injection"}},
|
|
|
|
|
{"FMWPT", {A::SUMMARY_FIELD, "Total number of production wells"}},
|
|
|
|
|
{"FMWPR", {A::SUMMARY_FIELD, "Number of production wells currently flowing"}},
|
|
|
|
|
{"FMWPA", {A::SUMMARY_FIELD, "Number of abandoned production wells"}},
|
|
|
|
|
{"FMWPU", {A::SUMMARY_FIELD, "Number of unused production wells"}},
|
|
|
|
|
{"FMWPG", {A::SUMMARY_FIELD, "Number of producers on group control"}},
|
|
|
|
|
{"FMWPO", {A::SUMMARY_FIELD, "Number of producers controlled by own oil rate limit"}},
|
|
|
|
|
{"FMWPS", {A::SUMMARY_FIELD, "Number of producers on own surface rate limit control"}},
|
|
|
|
|
{"FMWPV", {A::SUMMARY_FIELD, "Number of producers on own reservoir volume rate limit control"}},
|
|
|
|
|
{"FMWPP", {A::SUMMARY_FIELD, "Number of producers on pressure control"}},
|
|
|
|
|
{"FMWPL", {A::SUMMARY_FIELD, "Number of producers using artificial lift"}},
|
|
|
|
|
{"FMWIT", {A::SUMMARY_FIELD, "Total number of injection wells"}},
|
|
|
|
|
{"FMWIN", {A::SUMMARY_FIELD, "Number of injection wells currently flowing"}},
|
|
|
|
|
{"FMWIA", {A::SUMMARY_FIELD, "Number of abandoned injection wells"}},
|
|
|
|
|
{"FMWIU", {A::SUMMARY_FIELD, "Number of unused injection wells"}},
|
|
|
|
|
{"FMWIG", {A::SUMMARY_FIELD, "Number of injectors on group control"}},
|
|
|
|
|
{"FMWIS", {A::SUMMARY_FIELD, "Number of injectors on own surface rate limit control"}},
|
|
|
|
|
{"FMWIV", {A::SUMMARY_FIELD, "Number of injectors on own reservoir volume rate limit control"}},
|
|
|
|
|
{"FMWIP", {A::SUMMARY_FIELD, "Number of injectors on pressure control"}},
|
|
|
|
|
{"FMWDR", {A::SUMMARY_FIELD, "Number of drilling events this timestep"}},
|
|
|
|
|
{"FMWDT", {A::SUMMARY_FIELD, "Number of drilling events in total"}},
|
|
|
|
|
{"FMWWO", {A::SUMMARY_FIELD, "Number of workover events this timestep"}},
|
|
|
|
|
{"FMWWT", {A::SUMMARY_FIELD, "Number of workover events in total"}},
|
|
|
|
|
{"FEPR", {A::SUMMARY_FIELD, "Energy Production Rate"}},
|
|
|
|
|
{"FEPT", {A::SUMMARY_FIELD, "Energy Production Total"}},
|
|
|
|
|
{"FNLPR", {A::SUMMARY_FIELD, "NGL Production Rate"}},
|
|
|
|
|
{"FNLPT", {A::SUMMARY_FIELD, "NGL Production Total"}},
|
|
|
|
|
{"FNLPRH", {A::SUMMARY_FIELD, "NGL Production Rate History"}},
|
|
|
|
|
{"FNLPTH", {A::SUMMARY_FIELD, "NGL Production Total History"}},
|
|
|
|
|
{"FAMF", {A::SUMMARY_FIELD, "Component aqueous mole fraction, from producing completions"}},
|
|
|
|
|
{"FXMF", {A::SUMMARY_FIELD, "Liquid Mole Fraction"}},
|
|
|
|
|
{"FYMF", {A::SUMMARY_FIELD, "Vapor Mole Fraction"}},
|
|
|
|
|
{"FXMFn", {A::SUMMARY_FIELD, "Liquid Mole Fraction for nth separator stage"}},
|
|
|
|
|
{"FYMFn", {A::SUMMARY_FIELD, "Vapor Mole Fraction for nth separator stage"}},
|
|
|
|
|
{"FZMF", {A::SUMMARY_FIELD, "Total Mole Fraction"}},
|
|
|
|
|
{"FCMPR", {A::SUMMARY_FIELD, "Hydrocarbon Component Molar Production Rates"}},
|
|
|
|
|
{"FCMPT", {A::SUMMARY_FIELD, "Hydrocarbon Component"}},
|
|
|
|
|
{"FCMIR", {A::SUMMARY_FIELD, "Hydrocarbon Component Molar Injection Rates"}},
|
|
|
|
|
{"FCMIT", {A::SUMMARY_FIELD, "Hydrocarbon Component Molar Injection Totals"}},
|
|
|
|
|
{"FHMIR", {A::SUMMARY_FIELD, "Hydrocarbon Molar Injection Rate"}},
|
|
|
|
|
{"FHMIT", {A::SUMMARY_FIELD, "Hydrocarbon Molar Injection Total"}},
|
|
|
|
|
{"FHMPR", {A::SUMMARY_FIELD, "Hydrocarbon Molar Production Rate"}},
|
|
|
|
|
{"FHMPT", {A::SUMMARY_FIELD, "Hydrocarbon Molar Production Total"}},
|
|
|
|
|
{"FCHMR", {A::SUMMARY_FIELD, "Hydrocarbon Component"}},
|
|
|
|
|
{"FCHMT", {A::SUMMARY_FIELD, "Hydrocarbon Component"}},
|
|
|
|
|
{"FCWGPR", {A::SUMMARY_FIELD, "Hydrocarbon Component Wet Gas Production Rate"}},
|
|
|
|
|
{"FCWGPT", {A::SUMMARY_FIELD, "Hydrocarbon Component Wet Gas Production Total"}},
|
|
|
|
|
{"FCWGIR", {A::SUMMARY_FIELD, "Hydrocarbon Component Wet Gas Injection Rate"}},
|
|
|
|
|
{"FCWGIT", {A::SUMMARY_FIELD, "Hydrocarbon Component Wet Gas Injection Total"}},
|
|
|
|
|
{"FCGMR", {A::SUMMARY_FIELD, "Hydrocarbon component"}},
|
|
|
|
|
{"FCGMT", {A::SUMMARY_FIELD, "Hydrocarbon component"}},
|
|
|
|
|
{"FCOMR", {A::SUMMARY_FIELD, "Hydrocarbon component"}},
|
|
|
|
|
{"FCOMT", {A::SUMMARY_FIELD, "Hydrocarbon component"}},
|
|
|
|
|
{"FCNMR", {A::SUMMARY_FIELD, "Hydrocarbon component molar rates in the NGL phase"}},
|
|
|
|
|
{"FCNWR", {A::SUMMARY_FIELD, "Hydrocarbon component mass rates in the NGL phase"}},
|
|
|
|
|
{"FCGMRn", {A::SUMMARY_FIELD, "Hydrocarbon component molar rates in the gas phase for nth separator stage"}},
|
|
|
|
|
{"FCGRn", {A::SUMMARY_FIELD, "Hydrocarbon component molar rates in the gas phase for nth separator stage"}},
|
|
|
|
|
{"FCOMRn", {A::SUMMARY_FIELD, "Hydrocarbon component"}},
|
|
|
|
|
{"FCORn", {A::SUMMARY_FIELD, "Hydrocarbon component"}},
|
|
|
|
|
{"FMUF", {A::SUMMARY_FIELD, "Make-up fraction"}},
|
|
|
|
|
{"FAMR", {A::SUMMARY_FIELD, "Make-up gas rate"}},
|
|
|
|
|
{"FAMT", {A::SUMMARY_FIELD, "Make-up gas total"}},
|
|
|
|
|
{"FGSPR", {A::SUMMARY_FIELD, "Target sustainable rate for most recent sustainable capacity test for gas"}},
|
|
|
|
|
{"FGSRL",
|
|
|
|
|
{A::SUMMARY_FIELD, "Maximum tested rate sustained for the test period during the most recent sustainable capacity test for gas"}},
|
|
|
|
|
{"FGSRU",
|
|
|
|
|
{A::SUMMARY_FIELD, "Minimum tested rate not sustained for the test period during the most recent sustainable capacity test for gas"}},
|
|
|
|
|
{"FGSSP",
|
|
|
|
|
{A::SUMMARY_FIELD, "Period for which target sustainable rate could be maintained for the most recent sustainable capacity test for gas"}},
|
|
|
|
|
{"FGSTP", {A::SUMMARY_FIELD, "Test period for the most recent sustainable capacity test for gas"}},
|
|
|
|
|
{"FOSPR", {A::SUMMARY_FIELD, "Target sustainable rate for most recent sustainable capacity test for oil"}},
|
|
|
|
|
{"FOSRL",
|
|
|
|
|
{A::SUMMARY_FIELD, "Maximum tested rate sustained for the test period during the most recent sustainable capacity test for oil"}},
|
|
|
|
|
{"FOSRU",
|
|
|
|
|
{A::SUMMARY_FIELD, "Minimum tested rate not sustained for the test period during the most recent sustainable capacity test for oil"}},
|
|
|
|
|
{"FOSSP",
|
|
|
|
|
{A::SUMMARY_FIELD, "Period for which target sustainable rate could be maintained for the most recent sustainable capacity test for oil"}},
|
|
|
|
|
{"FOSTP", {A::SUMMARY_FIELD, "Test period for the most recent sustainable capacity test for oil"}},
|
|
|
|
|
{"FWSPR", {A::SUMMARY_FIELD, "Target sustainable rate for most recent sustainable capacity test for water"}},
|
|
|
|
|
{"FWSRL",
|
|
|
|
|
{A::SUMMARY_FIELD, "Maximum tested rate sustained for the test period during the most recent sustainable capacity test for water"}},
|
|
|
|
|
{"FWSRU",
|
|
|
|
|
{A::SUMMARY_FIELD, "Minimum tested rate not sustained for the test period during the most recent sustainable capacity test for water"}},
|
|
|
|
|
{"FWSSP",
|
|
|
|
|
{A::SUMMARY_FIELD,
|
|
|
|
|
"Period for which target sustainable rate could be maintained for the most recent sustainable capacity test "
|
|
|
|
|
"for water"}},
|
|
|
|
|
{"FWSTP", {A::SUMMARY_FIELD, "Test period for the most recent sustainable capacity test for water"}},
|
|
|
|
|
{"FGPRG", {A::SUMMARY_FIELD, "Gas production rate"}},
|
|
|
|
|
{"FOPRG", {A::SUMMARY_FIELD, "Oil production rate"}},
|
|
|
|
|
{"FNLPRG", {A::SUMMARY_FIELD, "NGL production rate"}},
|
|
|
|
|
{"FXMFG", {A::SUMMARY_FIELD, "Liquid mole fraction"}},
|
|
|
|
|
{"FYMFG", {A::SUMMARY_FIELD, "Vapor mole fraction"}},
|
|
|
|
|
{"FCOMRG", {A::SUMMARY_FIELD, "Hydrocarbon component"}},
|
|
|
|
|
{"FCGMRG", {A::SUMMARY_FIELD, "Hydrocarbon component molar rates in the gas phase"}},
|
|
|
|
|
{"FCNMRG", {A::SUMMARY_FIELD, "Hydrocarbon component molar rates in the NGL phase"}},
|
|
|
|
|
{"FPR", {A::SUMMARY_FIELD, "Pressure average value"}},
|
|
|
|
|
{"FPRH", {A::SUMMARY_FIELD, "Pressure average value"}},
|
|
|
|
|
{"FPRP", {A::SUMMARY_FIELD, "Pressure average value"}},
|
|
|
|
|
{"FPRGZ", {A::SUMMARY_FIELD, "P/Z"}},
|
|
|
|
|
{"FRS", {A::SUMMARY_FIELD, "Gas-oil ratio"}},
|
|
|
|
|
{"FRV", {A::SUMMARY_FIELD, "Oil-gas ratio"}},
|
|
|
|
|
{"FCHIP", {A::SUMMARY_FIELD, "Component Hydrocarbon as Wet Gas"}},
|
|
|
|
|
{"FCMIP", {A::SUMMARY_FIELD, "Component Hydrocarbon as Moles"}},
|
|
|
|
|
{"FPPC", {A::SUMMARY_FIELD, "Initial Contact Corrected Potential"}},
|
|
|
|
|
{"FREAC", {A::SUMMARY_FIELD, "Reaction rate. The reaction number is given as a component index"}},
|
|
|
|
|
{"FREAT", {A::SUMMARY_FIELD, "Reaction total. The reaction number is given as a component index"}},
|
|
|
|
|
{"FRPV", {A::SUMMARY_FIELD, "Pore Volume at Reservoir conditions"}},
|
|
|
|
|
{"FOPV", {A::SUMMARY_FIELD, "Pore Volume containing Oil"}},
|
|
|
|
|
{"FWPV", {A::SUMMARY_FIELD, "Pore Volume containing Water"}},
|
|
|
|
|
{"FGPV", {A::SUMMARY_FIELD, "Pore Volume containing Gas"}},
|
|
|
|
|
{"FHPV", {A::SUMMARY_FIELD, "Pore Volume containing Hydrocarbon"}},
|
|
|
|
|
{"FRTM", {A::SUMMARY_FIELD, "Transmissibility Multiplier associated with rock compaction"}},
|
|
|
|
|
{"FOE", {A::SUMMARY_FIELD, "(OIP(initial - OIP(now) / OIP(initial)"}},
|
|
|
|
|
{"FOEW", {A::SUMMARY_FIELD, "Oil Production from Wells / OIP(initial)"}},
|
|
|
|
|
{"FOEIW", {A::SUMMARY_FIELD, "(OIP(initial - OIP(now) / Initial Mobile Oil with respect to Water"}},
|
|
|
|
|
{"FOEWW", {A::SUMMARY_FIELD, "Oil Production from Wells / Initial Mobile Oil with respect to Water"}},
|
|
|
|
|
{"FOEIG", {A::SUMMARY_FIELD, "(OIP(initial - OIP(now) / Initial Mobile Oil with respect to Gas"}},
|
|
|
|
|
{"FOEWG", {A::SUMMARY_FIELD, "Oil Production from Wells / Initial Mobile Oil with respect to Gas"}},
|
|
|
|
|
{"FORMR", {A::SUMMARY_FIELD, "Total stock tank oil produced by rock compaction"}},
|
|
|
|
|
{"FORMW", {A::SUMMARY_FIELD, "Total stock tank oil produced by water influx"}},
|
|
|
|
|
{"FORMG", {A::SUMMARY_FIELD, "Total stock tank oil produced by gas influx"}},
|
|
|
|
|
{"FORME", {A::SUMMARY_FIELD, "Total stock tank oil produced by oil expansion"}},
|
|
|
|
|
{"FORMS", {A::SUMMARY_FIELD, "Total stock tank oil produced by solution gas"}},
|
|
|
|
|
{"FORMF", {A::SUMMARY_FIELD, "Total stock tank oil produced by free gas influx"}},
|
|
|
|
|
{"FORMX", {A::SUMMARY_FIELD, "Total stock tank oil produced by 'traced' water influx"}},
|
|
|
|
|
{"FORMY", {A::SUMMARY_FIELD, "Total stock tank oil produced by other water influx"}},
|
|
|
|
|
{"FORFR", {A::SUMMARY_FIELD, "Fraction of total oil produced by rock compaction"}},
|
|
|
|
|
{"FORFW", {A::SUMMARY_FIELD, "Fraction of total oil produced by water influx"}},
|
|
|
|
|
{"FORFG", {A::SUMMARY_FIELD, "Fraction of total oil produced by gas influx"}},
|
|
|
|
|
{"FORFE", {A::SUMMARY_FIELD, "Fraction of total oil produced by oil expansion"}},
|
|
|
|
|
{"FORFS", {A::SUMMARY_FIELD, "Fraction of total oil produced by solution gas"}},
|
|
|
|
|
{"FORFF", {A::SUMMARY_FIELD, "Fraction of total oil produced by free gas influx"}},
|
|
|
|
|
{"FORFX", {A::SUMMARY_FIELD, "Fraction of total oil produced by 'traced' water influx"}},
|
|
|
|
|
{"FORFY", {A::SUMMARY_FIELD, "Fraction of total oil produced by other water influx"}},
|
|
|
|
|
{"FAQR", {A::SUMMARY_FIELD, "Aquifer influx rate"}},
|
|
|
|
|
{"FAQT", {A::SUMMARY_FIELD, "Cumulative aquifer influx"}},
|
|
|
|
|
{"FAQRG", {A::SUMMARY_FIELD, "Aquifer influx rate"}},
|
|
|
|
|
{"FAQTG", {A::SUMMARY_FIELD, "Cumulative aquifer influx"}},
|
|
|
|
|
{"FAQER", {A::SUMMARY_FIELD, "Aquifer thermal energy influx rate"}},
|
|
|
|
|
{"FAQET", {A::SUMMARY_FIELD, "Cumulative aquifer thermal energy influx"}},
|
|
|
|
|
{"FNQR", {A::SUMMARY_FIELD, "Aquifer influx rate"}},
|
|
|
|
|
{"FNQT", {A::SUMMARY_FIELD, "Cumulative aquifer influx"}},
|
|
|
|
|
{"FTPR", {A::SUMMARY_FIELD, "Tracer Production Rate"}},
|
|
|
|
|
{"FTPT", {A::SUMMARY_FIELD, "Tracer Production Total"}},
|
|
|
|
|
{"FTPC", {A::SUMMARY_FIELD, "Tracer Production Concentration"}},
|
|
|
|
|
{"FTIR", {A::SUMMARY_FIELD, "Tracer Injection Rate"}},
|
|
|
|
|
{"FTIT", {A::SUMMARY_FIELD, "Tracer Injection Total"}},
|
|
|
|
|
{"FTIC", {A::SUMMARY_FIELD, "Tracer Injection Concentration"}},
|
|
|
|
|
{"FTMR", {A::SUMMARY_FIELD, "Traced mass Rate"}},
|
|
|
|
|
{"FTMT", {A::SUMMARY_FIELD, "Traced mass Total"}},
|
|
|
|
|
{"FTQR", {A::SUMMARY_FIELD, "Traced molar Rate"}},
|
|
|
|
|
{"FTCM", {A::SUMMARY_FIELD, "Tracer Carrier molar Rate"}},
|
|
|
|
|
{"FTMF", {A::SUMMARY_FIELD, "Traced molar fraction"}},
|
|
|
|
|
{"FTVL", {A::SUMMARY_FIELD, "Traced liquid volume rate"}},
|
|
|
|
|
{"FTVV", {A::SUMMARY_FIELD, "Traced vapor volume rate"}},
|
|
|
|
|
{"FTTL", {A::SUMMARY_FIELD, "Traced liquid volume total"}},
|
|
|
|
|
{"FTTV", {A::SUMMARY_FIELD, "Traced vapor volume total"}},
|
|
|
|
|
{"FTML", {A::SUMMARY_FIELD, "Traced mass liquid rate"}},
|
|
|
|
|
{"FTMV", {A::SUMMARY_FIELD, "Traced mass vapor rate"}},
|
|
|
|
|
{"FTLM", {A::SUMMARY_FIELD, "Traced mass liquid total"}},
|
|
|
|
|
{"FTVM", {A::SUMMARY_FIELD, "Traced mass vapor total"}},
|
|
|
|
|
{"FTIPT", {A::SUMMARY_FIELD, "Tracer In Place"}},
|
|
|
|
|
{"FTIPF", {A::SUMMARY_FIELD, "Tracer In Place"}},
|
|
|
|
|
{"FTIPS", {A::SUMMARY_FIELD, "Tracer In Place"}},
|
|
|
|
|
{"FAPI", {A::SUMMARY_FIELD, "Oil API"}},
|
|
|
|
|
{"FSPR", {A::SUMMARY_FIELD, "Salt Production Rate"}},
|
|
|
|
|
{"FSPT", {A::SUMMARY_FIELD, "Salt Production Total"}},
|
|
|
|
|
{"FSIR", {A::SUMMARY_FIELD, "Salt Injection Rate"}},
|
|
|
|
|
{"FSIT", {A::SUMMARY_FIELD, "Salt Injection Total"}},
|
|
|
|
|
{"FSPC", {A::SUMMARY_FIELD, "Salt Production Concentration"}},
|
|
|
|
|
{"FSIC", {A::SUMMARY_FIELD, "Salt Injection Concentration"}},
|
|
|
|
|
{"FSIP", {A::SUMMARY_FIELD, "Salt In Place"}},
|
|
|
|
|
{"GTPRANI", {A::SUMMARY_FIELD, "Anion Production Rate"}},
|
|
|
|
|
{"GTPTANI", {A::SUMMARY_FIELD, "Anion Production Total"}},
|
|
|
|
|
{"GTIRANI", {A::SUMMARY_FIELD, "Anion Injection Rate"}},
|
|
|
|
|
{"GTITANI", {A::SUMMARY_FIELD, "Anion Injection Total"}},
|
|
|
|
|
{"GTPRCAT", {A::SUMMARY_FIELD, "Cation Production Rate"}},
|
|
|
|
|
{"GTPTCAT", {A::SUMMARY_FIELD, "Cation Production Total"}},
|
|
|
|
|
{"GTIRCAT", {A::SUMMARY_FIELD, "Cation Injection Rate"}},
|
|
|
|
|
{"GTITCAT", {A::SUMMARY_FIELD, "Cation Injection Total"}},
|
|
|
|
|
{"FTPCHEA", {A::SUMMARY_FIELD, "Production Temperature"}},
|
|
|
|
|
{"FTICHEA", {A::SUMMARY_FIELD, "Injection Temperature"}},
|
|
|
|
|
{"FTPRHEA", {A::SUMMARY_FIELD, "Energy flows"}},
|
|
|
|
|
{"FTPTHEA", {A::SUMMARY_FIELD, "Energy Production Total"}},
|
|
|
|
|
{"FTIRHEA", {A::SUMMARY_FIELD, "Energy flows"}},
|
|
|
|
|
{"FTITHEA", {A::SUMMARY_FIELD, "Energy Injection Total"}},
|
|
|
|
|
{"FTIPTHEA", {A::SUMMARY_FIELD, "Difference in Energy in place between current and initial time"}},
|
|
|
|
|
{"FTPR", {A::SUMMARY_FIELD, "Tracer Production Rate"}},
|
|
|
|
|
{"FTPT", {A::SUMMARY_FIELD, "Tracer Production Total"}},
|
|
|
|
|
{"FTPC", {A::SUMMARY_FIELD, "Tracer Production Concentration"}},
|
|
|
|
|
{"FTIR", {A::SUMMARY_FIELD, "Tracer Injection Rate"}},
|
|
|
|
|
{"FTIT", {A::SUMMARY_FIELD, "Tracer Injection Total"}},
|
|
|
|
|
{"FTIC", {A::SUMMARY_FIELD, "Tracer Injection Concentration"}},
|
|
|
|
|
{"FTIPT", {A::SUMMARY_FIELD, "Tracer In Place"}},
|
|
|
|
|
{"FTIPF", {A::SUMMARY_FIELD, "Tracer In Place"}},
|
|
|
|
|
{"FTIPS", {A::SUMMARY_FIELD, "Tracer In Place"}},
|
|
|
|
|
{"FTIP#", {A::SUMMARY_FIELD, " Tracer In Place in phase # (1,2,3,...)"}},
|
|
|
|
|
{"FTADS", {A::SUMMARY_FIELD, "Tracer Adsorption total"}},
|
|
|
|
|
{"FTDCY", {A::SUMMARY_FIELD, "Decayed tracer"}},
|
|
|
|
|
{"FTIRF", {A::SUMMARY_FIELD, "Tracer Injection Rate"}},
|
|
|
|
|
{"FTIRS", {A::SUMMARY_FIELD, "Tracer Injection Rate"}},
|
|
|
|
|
{"FTPRF", {A::SUMMARY_FIELD, "Tracer Production Rate"}},
|
|
|
|
|
{"FTPRS", {A::SUMMARY_FIELD, "Tracer Production Rate"}},
|
|
|
|
|
{"FTITF", {A::SUMMARY_FIELD, "Tracer Injection Total"}},
|
|
|
|
|
{"FTITS", {A::SUMMARY_FIELD, "Tracer Injection Total"}},
|
|
|
|
|
{"FTPTF", {A::SUMMARY_FIELD, "Tracer Production Total"}},
|
|
|
|
|
{"FTPTS", {A::SUMMARY_FIELD, "Tracer Production Total"}},
|
|
|
|
|
{"FTICF", {A::SUMMARY_FIELD, "Tracer Injection Concentration"}},
|
|
|
|
|
{"FTICS", {A::SUMMARY_FIELD, "Tracer Injection Concentration"}},
|
|
|
|
|
{"FTPCF", {A::SUMMARY_FIELD, "Tracer Production"}},
|
|
|
|
|
{"FTPCS", {A::SUMMARY_FIELD, "Tracer Production"}},
|
|
|
|
|
{"FMPR", {A::SUMMARY_FIELD, "Methane Production Rate"}},
|
|
|
|
|
{"FMPT", {A::SUMMARY_FIELD, "Methane Production Total"}},
|
|
|
|
|
{"FMIR", {A::SUMMARY_FIELD, "Methane Injection Rate"}},
|
|
|
|
|
{"FMIT", {A::SUMMARY_FIELD, "Methane Injection Total"}},
|
|
|
|
|
{"FCGC", {A::SUMMARY_FIELD, "Bulk Coal Gas Concentration"}},
|
|
|
|
|
{"FCSC", {A::SUMMARY_FIELD, "Bulk Coal Solvent Concentration"}},
|
|
|
|
|
{"FTPRFOA", {A::SUMMARY_FIELD, "Production Rate"}},
|
|
|
|
|
{"FTPTFOA", {A::SUMMARY_FIELD, "Production Total"}},
|
|
|
|
|
{"FTIRFOA", {A::SUMMARY_FIELD, "Injection Rate"}},
|
|
|
|
|
{"FTITFOA", {A::SUMMARY_FIELD, "Injection Total"}},
|
|
|
|
|
{"FTIPTFOA", {A::SUMMARY_FIELD, "In Solution"}},
|
|
|
|
|
{"FTADSFOA", {A::SUMMARY_FIELD, "Adsorption total"}},
|
|
|
|
|
{"FTDCYFOA", {A::SUMMARY_FIELD, "Decayed tracer"}},
|
|
|
|
|
{"FTMOBFOA", {A::SUMMARY_FIELD, "Gas mobility factor"}},
|
|
|
|
|
{"FTPRFOA", {A::SUMMARY_FIELD, "Production Rate"}},
|
|
|
|
|
{"FTPTFOA", {A::SUMMARY_FIELD, "Production Total"}},
|
|
|
|
|
{"FTIRFOA", {A::SUMMARY_FIELD, "Injection Rate"}},
|
|
|
|
|
{"FTITFOA", {A::SUMMARY_FIELD, "Injection Total"}},
|
|
|
|
|
{"FTIPTFOA", {A::SUMMARY_FIELD, "In Solution"}},
|
|
|
|
|
{"FTADSFOA", {A::SUMMARY_FIELD, "Adsorption total"}},
|
|
|
|
|
{"FTDCYFOA", {A::SUMMARY_FIELD, "Decayed tracer"}},
|
|
|
|
|
{"FTMOBFOA", {A::SUMMARY_FIELD, "Gas mobility factor"}},
|
|
|
|
|
{"FSGR", {A::SUMMARY_FIELD, "Sales Gas Rate"}},
|
|
|
|
|
{"FGSR", {A::SUMMARY_FIELD, "Sales Gas Rate"}},
|
|
|
|
|
{"FSGT", {A::SUMMARY_FIELD, "Sales Gas Total"}},
|
|
|
|
|
{"FGST", {A::SUMMARY_FIELD, "Sales Gas Total"}},
|
|
|
|
|
{"FGDC", {A::SUMMARY_FIELD, "Gas Delivery Capacity"}},
|
|
|
|
|
{"FGDCQ", {A::SUMMARY_FIELD, "Field/Group Gas DCQ"}},
|
|
|
|
|
{"FGCR", {A::SUMMARY_FIELD, "Gas consumption rate, at and below this group"}},
|
|
|
|
|
{"FGCT", {A::SUMMARY_FIELD, "Gas consumption cumulative total, at and below this group"}},
|
|
|
|
|
{"FFGR", {A::SUMMARY_FIELD, "Fuel Gas rate, at and below this group"}},
|
|
|
|
|
{"FFGT", {A::SUMMARY_FIELD, "Fuel Gas cumulative total, at and below this group"}},
|
|
|
|
|
{"FGIMR", {A::SUMMARY_FIELD, "Gas import rate, at and below this group"}},
|
|
|
|
|
{"FGIMT", {A::SUMMARY_FIELD, "Gas import cumulative total, at and below this group"}},
|
|
|
|
|
{"FGLIR", {A::SUMMARY_FIELD, "Gas Lift Injection Rate"}},
|
|
|
|
|
{"FGCV", {A::SUMMARY_FIELD, "Gas Calorific Value"}},
|
|
|
|
|
{"FGQ", {A::SUMMARY_FIELD, "Gas molar Quality"}},
|
|
|
|
|
{"FEPR", {A::SUMMARY_FIELD, "Energy Production Rate"}},
|
|
|
|
|
{"FEPT", {A::SUMMARY_FIELD, "Energy Production Total"}},
|
|
|
|
|
{"FESR", {A::SUMMARY_FIELD, "Energy Sales Rate"}},
|
|
|
|
|
{"FEST", {A::SUMMARY_FIELD, "Energy Sales Total"}},
|
|
|
|
|
{"FEDC", {A::SUMMARY_FIELD, "Energy Delivery Capacity"}},
|
|
|
|
|
{"FEDCQ", {A::SUMMARY_FIELD, "Energy DCQ"}},
|
|
|
|
|
{"FCPR", {A::SUMMARY_FIELD, "Polymer Production Rate"}},
|
|
|
|
|
{"FCPC", {A::SUMMARY_FIELD, "Polymer Production Concentration"}},
|
|
|
|
|
{"FCPT", {A::SUMMARY_FIELD, "Polymer Production Total"}},
|
|
|
|
|
{"FCIR", {A::SUMMARY_FIELD, "Polymer Injection Rate"}},
|
|
|
|
|
{"FCIC", {A::SUMMARY_FIELD, "Polymer Injection Concentration"}},
|
|
|
|
|
{"FCIT", {A::SUMMARY_FIELD, "Polymer Injection Total"}},
|
|
|
|
|
{"FCIP", {A::SUMMARY_FIELD, "Polymer In Solution"}},
|
|
|
|
|
{"FCAD", {A::SUMMARY_FIELD, "Polymer Adsorption total"}},
|
|
|
|
|
{"FSPR", {A::SUMMARY_FIELD, "Salt Production Rate"}},
|
|
|
|
|
{"FSPT", {A::SUMMARY_FIELD, "Salt Production Total"}},
|
|
|
|
|
{"FSIR", {A::SUMMARY_FIELD, "Salt Injection Rate"}},
|
|
|
|
|
{"FSIT", {A::SUMMARY_FIELD, "Salt Injection Total"}},
|
|
|
|
|
{"FSIP", {A::SUMMARY_FIELD, "Salt In Place"}},
|
|
|
|
|
{"PSSPR", {A::SUMMARY_FIELD, "Log of the pressure change per unit time"}},
|
|
|
|
|
{"PSSSO", {A::SUMMARY_FIELD, "Log of the oil saturation change per unit time"}},
|
|
|
|
|
{"PSSSW", {A::SUMMARY_FIELD, "Log of the water saturation change per unit time"}},
|
|
|
|
|
{"PSSSG", {A::SUMMARY_FIELD, "Log of the gas saturation change per unit time"}},
|
|
|
|
|
{"PSSSC", {A::SUMMARY_FIELD, "Log of the salt concentration change per unit time"}},
|
|
|
|
|
{"FNPR", {A::SUMMARY_FIELD, "Solvent Production Rate"}},
|
|
|
|
|
{"FNPT", {A::SUMMARY_FIELD, "Solvent Production Total"}},
|
|
|
|
|
{"FNIR", {A::SUMMARY_FIELD, "Solvent Injection Rate"}},
|
|
|
|
|
{"FNIT", {A::SUMMARY_FIELD, "Solvent Injection Total"}},
|
|
|
|
|
{"FNIP", {A::SUMMARY_FIELD, "Solvent In Place"}},
|
|
|
|
|
{"FTPRSUR", {A::SUMMARY_FIELD, "Production Rate"}},
|
|
|
|
|
{"FTPTSUR", {A::SUMMARY_FIELD, "Production Total"}},
|
|
|
|
|
{"FTIRSUR", {A::SUMMARY_FIELD, "Injection Rate"}},
|
|
|
|
|
{"FTITSUR", {A::SUMMARY_FIELD, "Injection Total"}},
|
|
|
|
|
{"FTIPTSUR", {A::SUMMARY_FIELD, "In Solution"}},
|
|
|
|
|
{"FTADSUR", {A::SUMMARY_FIELD, "Adsorption total"}},
|
|
|
|
|
{"FTPRALK", {A::SUMMARY_FIELD, "Production Rate"}},
|
|
|
|
|
{"FTPTALK", {A::SUMMARY_FIELD, "Production Total"}},
|
|
|
|
|
{"FTIRALK", {A::SUMMARY_FIELD, "Injection Rate"}},
|
|
|
|
|
{"FTITALK", {A::SUMMARY_FIELD, "Injection Total"}},
|
|
|
|
|
{"FU", {A::SUMMARY_FIELD, "User-defined field quantity"}},
|
2018-08-30 04:17:37 -05:00
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
{"GOPR", {A::SUMMARY_WELL_GROUP, "Oil Production Rate"}},
|
|
|
|
|
{"GOPRA", {A::SUMMARY_WELL_GROUP, "Oil Production Rate above GOC"}},
|
|
|
|
|
{"GOPRB", {A::SUMMARY_WELL_GROUP, "Oil Production Rate below GOC"}},
|
|
|
|
|
{"GOPTA", {A::SUMMARY_WELL_GROUP, "Oil Production Total above GOC"}},
|
|
|
|
|
{"GOPTB", {A::SUMMARY_WELL_GROUP, "Oil Production Total below GOC"}},
|
|
|
|
|
{"GOPR1", {A::SUMMARY_WELL_GROUP, "Oil Production Rate above GOC"}},
|
|
|
|
|
{"GOPR2", {A::SUMMARY_WELL_GROUP, "Oil Production Rate below GOC"}},
|
|
|
|
|
{"GOPT1", {A::SUMMARY_WELL_GROUP, "Oil Production Total above GOC"}},
|
|
|
|
|
{"GOPT2", {A::SUMMARY_WELL_GROUP, "Oil Production Total below GOC"}},
|
|
|
|
|
{"GOMR", {A::SUMMARY_WELL_GROUP, "Oil Mass Rate"}},
|
|
|
|
|
{"GOMT", {A::SUMMARY_WELL_GROUP, "Oil Mass Total"}},
|
|
|
|
|
{"GODN", {A::SUMMARY_WELL_GROUP, "Oil Density at Surface Conditions"}},
|
|
|
|
|
{"GOPRH", {A::SUMMARY_WELL_GROUP, "Oil Production Rate History"}},
|
|
|
|
|
{"GOPRT", {A::SUMMARY_WELL_GROUP, "Oil Production Rate Target/Limit"}},
|
|
|
|
|
{"GOPRL", {A::SUMMARY_WELL_GROUP, "Oil Production Rate Target/Limit"}},
|
|
|
|
|
{"GOPRF", {A::SUMMARY_WELL_GROUP, "Free Oil Production Rate"}},
|
|
|
|
|
{"GOPRS", {A::SUMMARY_WELL_GROUP, "Solution Oil Production Rate"}},
|
|
|
|
|
{"GOPT", {A::SUMMARY_WELL_GROUP, "Oil Production Total"}},
|
|
|
|
|
{"GOPTH", {A::SUMMARY_WELL_GROUP, "Oil Production Total History"}},
|
|
|
|
|
{"GOPTF", {A::SUMMARY_WELL_GROUP, "Free Oil Production Total"}},
|
|
|
|
|
{"GOPTS", {A::SUMMARY_WELL_GROUP, "Solution Oil Production Total"}},
|
|
|
|
|
{"GOIR", {A::SUMMARY_WELL_GROUP, "Oil Injection Rate"}},
|
|
|
|
|
{"GOIRH", {A::SUMMARY_WELL_GROUP, "Oil Injection Rate History"}},
|
|
|
|
|
{"GOIRT", {A::SUMMARY_WELL_GROUP, "Oil Injection Rate Target/Limit"}},
|
|
|
|
|
{"GOIRL", {A::SUMMARY_WELL_GROUP, "Oil Injection Rate Target/Limit"}},
|
|
|
|
|
{"GOIT", {A::SUMMARY_WELL_GROUP, "Oil Injection Total"}},
|
|
|
|
|
{"GOITH", {A::SUMMARY_WELL_GROUP, "Oil Injection Total History"}},
|
|
|
|
|
{"GOPP", {A::SUMMARY_WELL_GROUP, "Oil Potential Production rate"}},
|
|
|
|
|
{"GOPP2", {A::SUMMARY_WELL_GROUP, "Oil Potential Production rate"}},
|
|
|
|
|
{"GOPI", {A::SUMMARY_WELL_GROUP, "Oil Potential Injection rate"}},
|
|
|
|
|
{"GOPI2", {A::SUMMARY_WELL_GROUP, "Oil Potential Injection rate"}},
|
|
|
|
|
{"GOPGR", {A::SUMMARY_WELL_GROUP, "Oil Production Guide Rate"}},
|
|
|
|
|
{"GOIGR", {A::SUMMARY_WELL_GROUP, "Oil Injection Guide Rate"}},
|
|
|
|
|
{"GOVPR", {A::SUMMARY_WELL_GROUP, "Oil Voidage Production Rate"}},
|
|
|
|
|
{"GOVPT", {A::SUMMARY_WELL_GROUP, "Oil Voidage Production Total"}},
|
|
|
|
|
{"GOVIR", {A::SUMMARY_WELL_GROUP, "Oil Voidage Injection Rate"}},
|
|
|
|
|
{"GOVIT", {A::SUMMARY_WELL_GROUP, "Oil Voidage Injection Total"}},
|
|
|
|
|
{"GOnPR", {A::SUMMARY_WELL_GROUP, "nth separator stage oil rate"}},
|
|
|
|
|
{"GOnPT", {A::SUMMARY_WELL_GROUP, "nth separator stage oil total"}},
|
|
|
|
|
{"GEOR", {A::SUMMARY_WELL_GROUP, "Export Oil Rate"}},
|
|
|
|
|
{"GEOT", {A::SUMMARY_WELL_GROUP, "Export Oil Total"}},
|
|
|
|
|
{"GEOMF", {A::SUMMARY_WELL_GROUP, "Export Oil Mole Fraction"}},
|
|
|
|
|
{"GWPR", {A::SUMMARY_WELL_GROUP, "Water Production Rate"}},
|
|
|
|
|
{"GWMR", {A::SUMMARY_WELL_GROUP, "Water Mass Rate"}},
|
|
|
|
|
{"GWMT", {A::SUMMARY_WELL_GROUP, "Water Mass Total"}},
|
|
|
|
|
{"GWPRH", {A::SUMMARY_WELL_GROUP, "Water Production Rate History"}},
|
|
|
|
|
{"GWPRT", {A::SUMMARY_WELL_GROUP, "Water Production Rate Target/Limit"}},
|
|
|
|
|
{"GWPRL", {A::SUMMARY_WELL_GROUP, "Water Production Rate Target/Limit"}},
|
|
|
|
|
{"GWPT", {A::SUMMARY_WELL_GROUP, "Water Production Total"}},
|
|
|
|
|
{"GWPTH", {A::SUMMARY_WELL_GROUP, "Water Production Total History"}},
|
|
|
|
|
{"GWIR", {A::SUMMARY_WELL_GROUP, "Water Injection Rate"}},
|
|
|
|
|
{"GWIRH", {A::SUMMARY_WELL_GROUP, "Water Injection Rate History"}},
|
|
|
|
|
{"GWIRT", {A::SUMMARY_WELL_GROUP, "Water Injection Rate Target/Limit"}},
|
|
|
|
|
{"GWIRL", {A::SUMMARY_WELL_GROUP, "Water Injection Rate Target/Limit"}},
|
|
|
|
|
{"GWIT", {A::SUMMARY_WELL_GROUP, "Water Injection Total"}},
|
|
|
|
|
{"GWITH", {A::SUMMARY_WELL_GROUP, "Water Injection Total History"}},
|
|
|
|
|
{"GWPP", {A::SUMMARY_WELL_GROUP, "Water Potential Production rate"}},
|
|
|
|
|
{"GWPP2", {A::SUMMARY_WELL_GROUP, "Water Potential Production rate"}},
|
|
|
|
|
{"GWPI", {A::SUMMARY_WELL_GROUP, "Water Potential Injection rate"}},
|
|
|
|
|
{"GWPI2", {A::SUMMARY_WELL_GROUP, "Water Potential Injection rate"}},
|
|
|
|
|
{"GWPGR", {A::SUMMARY_WELL_GROUP, "Water Production Guide Rate"}},
|
|
|
|
|
{"GWIGR", {A::SUMMARY_WELL_GROUP, "Water Injection Guide Rate"}},
|
|
|
|
|
{"GWVPR", {A::SUMMARY_WELL_GROUP, "Water Voidage Production Rate"}},
|
|
|
|
|
{"GWVPT", {A::SUMMARY_WELL_GROUP, "Water Voidage Production Total"}},
|
|
|
|
|
{"GWVIR", {A::SUMMARY_WELL_GROUP, "Water Voidage Injection Rate"}},
|
|
|
|
|
{"GWVIT", {A::SUMMARY_WELL_GROUP, "Water Voidage Injection Total"}},
|
|
|
|
|
{"GWPIR", {A::SUMMARY_WELL_GROUP, "Ratio of produced water to injected water (percentage)"}},
|
|
|
|
|
{"GWMPR", {A::SUMMARY_WELL_GROUP, "Water component molar production rate"}},
|
|
|
|
|
{"GWMPT", {A::SUMMARY_WELL_GROUP, "Water component molar production total"}},
|
|
|
|
|
{"GWMIR", {A::SUMMARY_WELL_GROUP, "Water component molar injection rate"}},
|
|
|
|
|
{"GWMIT", {A::SUMMARY_WELL_GROUP, "Water component molar injection total"}},
|
|
|
|
|
{"GGPR", {A::SUMMARY_WELL_GROUP, "Gas Production Rate"}},
|
|
|
|
|
{"GGPRA", {A::SUMMARY_WELL_GROUP, "Gas Production Rate above"}},
|
|
|
|
|
{"GGPRB", {A::SUMMARY_WELL_GROUP, "Gas Production Rate below"}},
|
|
|
|
|
{"GGPTA", {A::SUMMARY_WELL_GROUP, "Gas Production Total above"}},
|
|
|
|
|
{"GGPTB", {A::SUMMARY_WELL_GROUP, "Gas Production Total below"}},
|
|
|
|
|
{"GGPR1", {A::SUMMARY_WELL_GROUP, "Gas Production Rate above GOC"}},
|
|
|
|
|
{"GGPR2", {A::SUMMARY_WELL_GROUP, "Gas Production Rate below GOC"}},
|
|
|
|
|
{"GGPT1", {A::SUMMARY_WELL_GROUP, "Gas Production Total above GOC"}},
|
|
|
|
|
{"GGPT2", {A::SUMMARY_WELL_GROUP, "Gas Production Total below GOC"}},
|
|
|
|
|
{"GGMR", {A::SUMMARY_WELL_GROUP, "Gas Mass Rate"}},
|
|
|
|
|
{"GGMT", {A::SUMMARY_WELL_GROUP, "Gas Mass Total"}},
|
|
|
|
|
{"GGDN", {A::SUMMARY_WELL_GROUP, "Gas Density at Surface Conditions"}},
|
|
|
|
|
{"GGPRH", {A::SUMMARY_WELL_GROUP, "Gas Production Rate History"}},
|
|
|
|
|
{"GGPRT", {A::SUMMARY_WELL_GROUP, "Gas Production Rate Target/Limit"}},
|
|
|
|
|
{"GGPRL", {A::SUMMARY_WELL_GROUP, "Gas Production Rate Target/Limit"}},
|
|
|
|
|
{"GGPRF", {A::SUMMARY_WELL_GROUP, "Free Gas Production Rate"}},
|
|
|
|
|
{"GGPRS", {A::SUMMARY_WELL_GROUP, "Solution Gas Production Rate"}},
|
|
|
|
|
{"GGPT", {A::SUMMARY_WELL_GROUP, "Gas Production Total"}},
|
|
|
|
|
{"GGPTH", {A::SUMMARY_WELL_GROUP, "Gas Production Total History"}},
|
|
|
|
|
{"GGPTF", {A::SUMMARY_WELL_GROUP, "Free Gas Production Total"}},
|
|
|
|
|
{"GGPTS", {A::SUMMARY_WELL_GROUP, "Solution Gas Production Total"}},
|
|
|
|
|
{"GGIR", {A::SUMMARY_WELL_GROUP, "Gas Injection Rate"}},
|
|
|
|
|
{"GGIRH", {A::SUMMARY_WELL_GROUP, "Gas Injection Rate History"}},
|
|
|
|
|
{"GGIRT", {A::SUMMARY_WELL_GROUP, "Gas Injection Rate Target/Limit"}},
|
|
|
|
|
{"GGIRL", {A::SUMMARY_WELL_GROUP, "Gas Injection Rate Target/Limit"}},
|
|
|
|
|
{"GGIT", {A::SUMMARY_WELL_GROUP, "Gas Injection Total"}},
|
|
|
|
|
{"GGITH", {A::SUMMARY_WELL_GROUP, "Gas Injection Total History"}},
|
|
|
|
|
{"GGPP", {A::SUMMARY_WELL_GROUP, "Gas Potential Production rate"}},
|
|
|
|
|
{"GGPP2", {A::SUMMARY_WELL_GROUP, "Gas Potential Production rate"}},
|
|
|
|
|
{"GGPPS", {A::SUMMARY_WELL_GROUP, "Solution"}},
|
|
|
|
|
{"GGPPS2", {A::SUMMARY_WELL_GROUP, "Solution"}},
|
|
|
|
|
{"GGPPF", {A::SUMMARY_WELL_GROUP, "Free Gas Potential Production rate"}},
|
|
|
|
|
{"GGPPF2", {A::SUMMARY_WELL_GROUP, "Free Gas Potential Production rate"}},
|
|
|
|
|
{"GGPI", {A::SUMMARY_WELL_GROUP, "Gas Potential Injection rate"}},
|
|
|
|
|
{"GGPI2", {A::SUMMARY_WELL_GROUP, "Gas Potential Injection rate"}},
|
|
|
|
|
{"GGPGR", {A::SUMMARY_WELL_GROUP, "Gas Production Guide Rate"}},
|
|
|
|
|
{"GGIGR", {A::SUMMARY_WELL_GROUP, "Gas Injection Guide Rate"}},
|
|
|
|
|
{"GSGR", {A::SUMMARY_WELL_GROUP, "Sales Gas Rate"}},
|
|
|
|
|
{"GGSR", {A::SUMMARY_WELL_GROUP, "Sales Gas Rate"}},
|
|
|
|
|
{"GSGT", {A::SUMMARY_WELL_GROUP, "Sales Gas Total"}},
|
|
|
|
|
{"GGST", {A::SUMMARY_WELL_GROUP, "Sales Gas Total"}},
|
|
|
|
|
{"GSMF", {A::SUMMARY_WELL_GROUP, "Sales Gas Mole Fraction"}},
|
|
|
|
|
{"GFGR", {A::SUMMARY_WELL_GROUP, "Fuel Gas Rate, at and below this group"}},
|
|
|
|
|
{"GFGT", {A::SUMMARY_WELL_GROUP, "Fuel Gas cumulative Total, at and below this group"}},
|
|
|
|
|
{"GFMF", {A::SUMMARY_WELL_GROUP, "Fuel Gas Mole Fraction"}},
|
|
|
|
|
{"GGCR", {A::SUMMARY_WELL_GROUP, "Gas Consumption Rate, at and below this group"}},
|
|
|
|
|
{"GGCT", {A::SUMMARY_WELL_GROUP, "Gas Consumption Total, at and below this group"}},
|
|
|
|
|
{"GGIMR", {A::SUMMARY_WELL_GROUP, "Gas Import Rate, at and below this group"}},
|
|
|
|
|
{"GGIMT", {A::SUMMARY_WELL_GROUP, "Gas Import Total, at and below this group"}},
|
|
|
|
|
{"GGLIR", {A::SUMMARY_WELL_GROUP, "Gas Lift Injection Rate"}},
|
|
|
|
|
{"GWGPR", {A::SUMMARY_WELL_GROUP, "Wet Gas Production Rate"}},
|
|
|
|
|
{"GWGPT", {A::SUMMARY_WELL_GROUP, "Wet Gas Production Total"}},
|
|
|
|
|
{"GWGPRH", {A::SUMMARY_WELL_GROUP, "Wet Gas Production Rate History"}},
|
|
|
|
|
{"GWGIR", {A::SUMMARY_WELL_GROUP, "Wet Gas Injection Rate"}},
|
|
|
|
|
{"GWGIT", {A::SUMMARY_WELL_GROUP, "Wet Gas Injection Total"}},
|
|
|
|
|
{"GEGR", {A::SUMMARY_WELL_GROUP, "Export Gas Rate"}},
|
|
|
|
|
{"GEGT", {A::SUMMARY_WELL_GROUP, "Export Gas Total"}},
|
|
|
|
|
{"GEMF", {A::SUMMARY_WELL_GROUP, "Export Gas Mole Fraction"}},
|
|
|
|
|
{"GEXGR", {A::SUMMARY_WELL_GROUP, "Excess Gas Rate"}},
|
|
|
|
|
{"GEXGT", {A::SUMMARY_WELL_GROUP, "Excess Gas Total"}},
|
|
|
|
|
{"GRGR", {A::SUMMARY_WELL_GROUP, "Re-injection Gas Rate"}},
|
|
|
|
|
{"GRGT", {A::SUMMARY_WELL_GROUP, "Re-injection Gas Total"}},
|
|
|
|
|
{"GGnPR", {A::SUMMARY_WELL_GROUP, "nth separator stage gas rate"}},
|
|
|
|
|
{"GGnPT", {A::SUMMARY_WELL_GROUP, "nth separator stage gas total"}},
|
|
|
|
|
{"GGVPR", {A::SUMMARY_WELL_GROUP, "Gas Voidage Production Rate"}},
|
|
|
|
|
{"GGVPT", {A::SUMMARY_WELL_GROUP, "Gas Voidage Production Total"}},
|
|
|
|
|
{"GGVIR", {A::SUMMARY_WELL_GROUP, "Gas Voidage Injection Rate"}},
|
|
|
|
|
{"GGVIT", {A::SUMMARY_WELL_GROUP, "Gas Voidage Injection Total"}},
|
|
|
|
|
{"GGQ", {A::SUMMARY_WELL_GROUP, "Gas Quality"}},
|
|
|
|
|
{"GLPR", {A::SUMMARY_WELL_GROUP, "Liquid Production Rate"}},
|
|
|
|
|
{"GLPRH", {A::SUMMARY_WELL_GROUP, "Liquid Production Rate History"}},
|
|
|
|
|
{"GLPRT", {A::SUMMARY_WELL_GROUP, "Liquid Production Rate Target/Limit"}},
|
|
|
|
|
{"GLPRL", {A::SUMMARY_WELL_GROUP, "Liquid Production Rate Target/Limit"}},
|
|
|
|
|
{"GLPT", {A::SUMMARY_WELL_GROUP, "Liquid Production Total"}},
|
|
|
|
|
{"GLPTH", {A::SUMMARY_WELL_GROUP, "Liquid Production Total History"}},
|
|
|
|
|
{"GVPR", {A::SUMMARY_WELL_GROUP, "Res Volume Production Rate"}},
|
|
|
|
|
{"GVPRT", {A::SUMMARY_WELL_GROUP, "Res Volume Production Rate Target/Limit"}},
|
|
|
|
|
{"GVPRL", {A::SUMMARY_WELL_GROUP, "Res Volume Production Rate Target/Limit"}},
|
|
|
|
|
{"GVPT", {A::SUMMARY_WELL_GROUP, "Res Volume Production Total"}},
|
|
|
|
|
{"GVPGR", {A::SUMMARY_WELL_GROUP, "Res Volume Production Guide Rate"}},
|
|
|
|
|
{"GVIR", {A::SUMMARY_WELL_GROUP, "Res Volume Injection Rate"}},
|
|
|
|
|
{"GVIRT", {A::SUMMARY_WELL_GROUP, "Res Volume Injection Rate Target/Limit"}},
|
|
|
|
|
{"GVIRL", {A::SUMMARY_WELL_GROUP, "Res Volume Injection Rate Target/Limit"}},
|
|
|
|
|
{"GVIT", {A::SUMMARY_WELL_GROUP, "Res Volume Injection Total"}},
|
|
|
|
|
{"GWCT", {A::SUMMARY_WELL_GROUP, "Water Cut"}},
|
|
|
|
|
{"GWCTH", {A::SUMMARY_WELL_GROUP, "Water Cut History"}},
|
|
|
|
|
{"GGOR", {A::SUMMARY_WELL_GROUP, "Gas-Oil Ratio"}},
|
|
|
|
|
{"GGORH", {A::SUMMARY_WELL_GROUP, "Gas-Oil Ratio History"}},
|
|
|
|
|
{"GOGR", {A::SUMMARY_WELL_GROUP, "Oil-Gas Ratio"}},
|
|
|
|
|
{"GOGRH", {A::SUMMARY_WELL_GROUP, "Oil-Gas Ratio History"}},
|
|
|
|
|
{"GWGR", {A::SUMMARY_WELL_GROUP, "Water-Gas Ratio"}},
|
|
|
|
|
{"GWGRH", {A::SUMMARY_WELL_GROUP, "Water-Gas Ratio History"}},
|
|
|
|
|
{"GGLR", {A::SUMMARY_WELL_GROUP, "Gas-Liquid Ratio"}},
|
|
|
|
|
{"GGLRH", {A::SUMMARY_WELL_GROUP, "Gas-Liquid Ratio History"}},
|
|
|
|
|
{"GMCTP", {A::SUMMARY_WELL_GROUP, "Mode of Control for group Production"}},
|
|
|
|
|
{"GMCTW", {A::SUMMARY_WELL_GROUP, "Mode of Control for group Water Injection"}},
|
|
|
|
|
{"GMCTG", {A::SUMMARY_WELL_GROUP, "Mode of Control for group Gas Injection"}},
|
|
|
|
|
{"GMWPT", {A::SUMMARY_WELL_GROUP, "Total number of production wells"}},
|
|
|
|
|
{"GMWPR", {A::SUMMARY_WELL_GROUP, "Number of production wells currently flowing"}},
|
|
|
|
|
{"GMWPA", {A::SUMMARY_WELL_GROUP, "Number of abandoned production wells"}},
|
|
|
|
|
{"GMWPU", {A::SUMMARY_WELL_GROUP, "Number of unused production wells"}},
|
|
|
|
|
{"GMWPG", {A::SUMMARY_WELL_GROUP, "Number of producers on group control"}},
|
|
|
|
|
{"GMWPO", {A::SUMMARY_WELL_GROUP, "Number of producers controlled by own oil rate limit"}},
|
|
|
|
|
{"GMWPS", {A::SUMMARY_WELL_GROUP, "Number of producers on own surface rate limit control"}},
|
|
|
|
|
{"GMWPV", {A::SUMMARY_WELL_GROUP, "Number of producers on own reservoir volume rate limit control"}},
|
|
|
|
|
{"GMWPP", {A::SUMMARY_WELL_GROUP, "Number of producers on pressure control"}},
|
|
|
|
|
{"GMWPL", {A::SUMMARY_WELL_GROUP, "Number of producers using artificial lift"}},
|
|
|
|
|
{"GMWIT", {A::SUMMARY_WELL_GROUP, "Total number of injection wells"}},
|
|
|
|
|
{"GMWIN", {A::SUMMARY_WELL_GROUP, "Number of injection wells currently flowing"}},
|
|
|
|
|
{"GMWIA", {A::SUMMARY_WELL_GROUP, "Number of abandoned injection wells"}},
|
|
|
|
|
{"GMWIU", {A::SUMMARY_WELL_GROUP, "Number of unused injection wells"}},
|
|
|
|
|
{"GMWIG", {A::SUMMARY_WELL_GROUP, "Number of injectors on group control"}},
|
|
|
|
|
{"GMWIS", {A::SUMMARY_WELL_GROUP, "Number of injectors on own surface rate limit control"}},
|
|
|
|
|
{"GMWIV", {A::SUMMARY_WELL_GROUP, "Number of injectors on own reservoir volume rate limit control"}},
|
|
|
|
|
{"GMWIP", {A::SUMMARY_WELL_GROUP, "Number of injectors on pressure control"}},
|
|
|
|
|
{"GMWDR", {A::SUMMARY_WELL_GROUP, "Number of drilling events this timestep"}},
|
|
|
|
|
{"GMWDT", {A::SUMMARY_WELL_GROUP, "Number of drilling events in total"}},
|
|
|
|
|
{"GMWWO", {A::SUMMARY_WELL_GROUP, "Number of workover events this timestep"}},
|
|
|
|
|
{"GMWWT", {A::SUMMARY_WELL_GROUP, "Number of workover events in total"}},
|
|
|
|
|
{"GEPR", {A::SUMMARY_WELL_GROUP, "Energy Production Rate"}},
|
|
|
|
|
{"GEPT", {A::SUMMARY_WELL_GROUP, "Energy Production Total"}},
|
|
|
|
|
{"GEFF", {A::SUMMARY_WELL_GROUP, "Efficiency Factor"}},
|
|
|
|
|
{"GNLPR", {A::SUMMARY_WELL_GROUP, "NGL Production Rate"}},
|
|
|
|
|
{"GNLPT", {A::SUMMARY_WELL_GROUP, "NGL Production Total"}},
|
|
|
|
|
{"GNLPRH", {A::SUMMARY_WELL_GROUP, "NGL Production Rate History"}},
|
|
|
|
|
{"GNLPTH", {A::SUMMARY_WELL_GROUP, "NGL Production Total History"}},
|
|
|
|
|
{"GAMF", {A::SUMMARY_WELL_GROUP, "Component aqueous mole fraction, from producing completions"}},
|
|
|
|
|
{"GXMF", {A::SUMMARY_WELL_GROUP, "Liquid Mole Fraction"}},
|
|
|
|
|
{"GYMF", {A::SUMMARY_WELL_GROUP, "Vapor Mole Fraction"}},
|
|
|
|
|
{"GXMFn", {A::SUMMARY_WELL_GROUP, "Liquid Mole Fraction for nth separator stage"}},
|
|
|
|
|
{"GYMFn", {A::SUMMARY_WELL_GROUP, "Vapor Mole Fraction for nth separator stage"}},
|
|
|
|
|
{"GZMF", {A::SUMMARY_WELL_GROUP, "Total Mole Fraction"}},
|
|
|
|
|
{"GCMPR", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Component Molar Production Rates"}},
|
|
|
|
|
{"GCMPT", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Component"}},
|
|
|
|
|
{"GCMIR", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Component Molar Injection Rates"}},
|
|
|
|
|
{"GCMIT", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Component Molar Injection Totals"}},
|
|
|
|
|
{"GHMIR", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Molar Injection Rate"}},
|
|
|
|
|
{"GHMIT", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Molar Injection Total"}},
|
|
|
|
|
{"GHMPR", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Molar Production Rate"}},
|
|
|
|
|
{"GHMPT", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Molar Production Total"}},
|
|
|
|
|
{"GCHMR", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Component"}},
|
|
|
|
|
{"GCHMT", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Component"}},
|
|
|
|
|
{"GCWGPR", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Component Wet Gas Production Rate"}},
|
|
|
|
|
{"GCWGPT", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Component Wet Gas Production Total"}},
|
|
|
|
|
{"GCWGIR", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Component Wet Gas Injection Rate"}},
|
|
|
|
|
{"GCWGIT", {A::SUMMARY_WELL_GROUP, "Hydrocarbon Component Wet Gas Injection Total"}},
|
|
|
|
|
{"GCGMR", {A::SUMMARY_WELL_GROUP, "Hydrocarbon component"}},
|
|
|
|
|
{"GCGMT", {A::SUMMARY_WELL_GROUP, "Hydrocarbon component"}},
|
|
|
|
|
{"GCOMR", {A::SUMMARY_WELL_GROUP, "Hydrocarbon component"}},
|
|
|
|
|
{"GCOMT", {A::SUMMARY_WELL_GROUP, "Hydrocarbon component"}},
|
|
|
|
|
{"GCNMR", {A::SUMMARY_WELL_GROUP, "Hydrocarbon component molar rates in the NGL phase"}},
|
|
|
|
|
{"GCNWR", {A::SUMMARY_WELL_GROUP, "Hydrocarbon component mass rates in the NGL phase"}},
|
|
|
|
|
{"GCGMRn", {A::SUMMARY_WELL_GROUP, "Hydrocarbon component molar rates in the gas phase for nth separator stage"}},
|
|
|
|
|
{"GCGRn", {A::SUMMARY_WELL_GROUP, "Hydrocarbon component molar rates in the gas phase for nth separator stage"}},
|
|
|
|
|
{"GCOMRn", {A::SUMMARY_WELL_GROUP, "Hydrocarbon component"}},
|
|
|
|
|
{"GCORn", {A::SUMMARY_WELL_GROUP, "Hydrocarbon component"}},
|
|
|
|
|
{"GMUF", {A::SUMMARY_WELL_GROUP, "Make-up fraction"}},
|
|
|
|
|
{"GAMR", {A::SUMMARY_WELL_GROUP, "Make-up gas rate"}},
|
|
|
|
|
{"GAMT", {A::SUMMARY_WELL_GROUP, "Make-up gas total"}},
|
|
|
|
|
{"GGSPR", {A::SUMMARY_WELL_GROUP, "Target sustainable rate for most recent sustainable capacity test for gas"}},
|
|
|
|
|
{"GGSRL",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Maximum tested rate sustained for the test period during the most recent sustainable capacity test for gas"}},
|
|
|
|
|
{"GGSRU",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP,
|
|
|
|
|
"Minimum tested rate not sustained for the test period during the most recent sustainable capacity test for "
|
|
|
|
|
"gas"}},
|
|
|
|
|
{"GGSSP",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP,
|
|
|
|
|
"Period for which target sustainable rate could be maintained for the most recent sustainable capacity test "
|
|
|
|
|
"for gas"}},
|
|
|
|
|
{"GGSTP", {A::SUMMARY_WELL_GROUP, "Test period for the most recent sustainable capacity test for gas"}},
|
|
|
|
|
{"GOSPR", {A::SUMMARY_WELL_GROUP, "Target sustainable rate for most recent sustainable capacity test for oil"}},
|
|
|
|
|
{"GOSRL",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Maximum tested rate sustained for the test period during the most recent sustainable capacity test for oil"}},
|
|
|
|
|
{"GOSRU",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP,
|
|
|
|
|
"Minimum tested rate not sustained for the test period during the most recent sustainable capacity test for "
|
|
|
|
|
"oil"}},
|
|
|
|
|
{"GOSSP",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP,
|
|
|
|
|
"Period for which target sustainable rate could be maintained for the most recent sustainable capacity test "
|
|
|
|
|
"for oil"}},
|
|
|
|
|
{"GOSTP", {A::SUMMARY_WELL_GROUP, "Test period for the most recent sustainable capacity test for oil"}},
|
|
|
|
|
{"GWSPR", {A::SUMMARY_WELL_GROUP, "Target sustainable rate for most recent sustainable capacity test for water"}},
|
|
|
|
|
{"GWSRL",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Maximum tested rate sustained for the test period during the most recent sustainable capacity test for water"}},
|
|
|
|
|
{"GWSRU",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP,
|
|
|
|
|
"Minimum tested rate not sustained for the test period during the most recent sustainable capacity test for "
|
|
|
|
|
"water"}},
|
|
|
|
|
{"GWSSP",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP,
|
|
|
|
|
"Period for which target sustainable rate could be maintained for the most recent sustainable capacity test "
|
|
|
|
|
"for water"}},
|
|
|
|
|
{"GWSTP", {A::SUMMARY_WELL_GROUP, "Test period for the most recent sustainable capacity test for water"}},
|
|
|
|
|
{"GGPRG", {A::SUMMARY_WELL_GROUP, "Gas production rate"}},
|
|
|
|
|
{"GOPRG", {A::SUMMARY_WELL_GROUP, "Oil production rate"}},
|
|
|
|
|
{"GNLPRG", {A::SUMMARY_WELL_GROUP, "NGL production rate"}},
|
|
|
|
|
{"GXMFG", {A::SUMMARY_WELL_GROUP, "Liquid mole fraction"}},
|
|
|
|
|
{"GYMFG", {A::SUMMARY_WELL_GROUP, "Vapor mole fraction"}},
|
|
|
|
|
{"GCOMRG", {A::SUMMARY_WELL_GROUP, "Hydrocarbon component"}},
|
|
|
|
|
{"GCGMRG", {A::SUMMARY_WELL_GROUP, "Hydrocarbon component molar rates in the gas phase"}},
|
|
|
|
|
{"GCNMRG", {A::SUMMARY_WELL_GROUP, "Hydrocarbon component molar rates in the NGL phase"}},
|
|
|
|
|
{"GTPR", {A::SUMMARY_WELL_GROUP, "Tracer Production Rate"}},
|
|
|
|
|
{"GTPT", {A::SUMMARY_WELL_GROUP, "Tracer Production Total"}},
|
|
|
|
|
{"GTPC", {A::SUMMARY_WELL_GROUP, "Tracer Production Concentration"}},
|
|
|
|
|
{"GTIR", {A::SUMMARY_WELL_GROUP, "Tracer Injection Rate"}},
|
|
|
|
|
{"GTIT", {A::SUMMARY_WELL_GROUP, "Tracer Injection Total"}},
|
|
|
|
|
{"GTIC", {A::SUMMARY_WELL_GROUP, "Tracer Injection Concentration"}},
|
|
|
|
|
{"GTMR", {A::SUMMARY_WELL_GROUP, "Traced mass Rate"}},
|
|
|
|
|
{"GTMT", {A::SUMMARY_WELL_GROUP, "Traced mass Total"}},
|
|
|
|
|
{"GTQR", {A::SUMMARY_WELL_GROUP, "Traced molar Rate"}},
|
|
|
|
|
{"GTCM", {A::SUMMARY_WELL_GROUP, "Tracer Carrier molar Rate"}},
|
|
|
|
|
{"GTMF", {A::SUMMARY_WELL_GROUP, "Traced molar fraction"}},
|
|
|
|
|
{"GTVL", {A::SUMMARY_WELL_GROUP, "Traced liquid volume rate"}},
|
|
|
|
|
{"GTVV", {A::SUMMARY_WELL_GROUP, "Traced vapor volume rate"}},
|
|
|
|
|
{"GTTL", {A::SUMMARY_WELL_GROUP, "Traced liquid volume total"}},
|
|
|
|
|
{"GTTV", {A::SUMMARY_WELL_GROUP, "Traced vapor volume total"}},
|
|
|
|
|
{"GTML", {A::SUMMARY_WELL_GROUP, "Traced mass liquid rate"}},
|
|
|
|
|
{"GTMV", {A::SUMMARY_WELL_GROUP, "Traced mass vapor rate"}},
|
|
|
|
|
{"GTLM", {A::SUMMARY_WELL_GROUP, "Traced mass liquid total"}},
|
|
|
|
|
{"GTVM", {A::SUMMARY_WELL_GROUP, "Traced mass vapor total"}},
|
|
|
|
|
{"GAPI", {A::SUMMARY_WELL_GROUP, "Oil API"}},
|
|
|
|
|
{"GSPR", {A::SUMMARY_WELL_GROUP, "Salt Production Rate"}},
|
|
|
|
|
{"GSPT", {A::SUMMARY_WELL_GROUP, "Salt Production Total"}},
|
|
|
|
|
{"GSIR", {A::SUMMARY_WELL_GROUP, "Salt Injection Rate"}},
|
|
|
|
|
{"GSIT", {A::SUMMARY_WELL_GROUP, "Salt Injection Total"}},
|
|
|
|
|
{"GSPC", {A::SUMMARY_WELL_GROUP, "Salt Production Concentration"}},
|
|
|
|
|
{"GSIC", {A::SUMMARY_WELL_GROUP, "Salt Injection Concentration"}},
|
|
|
|
|
{"WTPRANI", {A::SUMMARY_WELL_GROUP, "Anion Production Rate"}},
|
|
|
|
|
{"WTPTANI", {A::SUMMARY_WELL_GROUP, "Anion Production Total"}},
|
|
|
|
|
{"WTIRANI", {A::SUMMARY_WELL_GROUP, "Anion Injection Rate"}},
|
|
|
|
|
{"WTITANI", {A::SUMMARY_WELL_GROUP, "Anion Injection Total"}},
|
|
|
|
|
{"WTPRCAT", {A::SUMMARY_WELL_GROUP, "Cation Production Rate"}},
|
|
|
|
|
{"WTPTCAT", {A::SUMMARY_WELL_GROUP, "Cation Production Total"}},
|
|
|
|
|
{"WTIRCAT", {A::SUMMARY_WELL_GROUP, "Cation Injection Rate"}},
|
|
|
|
|
{"WTITCAT", {A::SUMMARY_WELL_GROUP, "Cation Injection Total"}},
|
|
|
|
|
{"GTPCHEA", {A::SUMMARY_WELL_GROUP, "Production Temperature"}},
|
|
|
|
|
{"GTICHEA", {A::SUMMARY_WELL_GROUP, "Injection Temperature"}},
|
|
|
|
|
{"GTPRHEA", {A::SUMMARY_WELL_GROUP, "Energy flows"}},
|
|
|
|
|
{"GTPTHEA", {A::SUMMARY_WELL_GROUP, "Energy Production Total"}},
|
|
|
|
|
{"GTIRHEA", {A::SUMMARY_WELL_GROUP, "Energy flows"}},
|
|
|
|
|
{"GTITHEA", {A::SUMMARY_WELL_GROUP, "Energy Injection Total"}},
|
|
|
|
|
{"GTPR", {A::SUMMARY_WELL_GROUP, "Tracer Production Rate"}},
|
|
|
|
|
{"GTPT", {A::SUMMARY_WELL_GROUP, "Tracer Production Total"}},
|
|
|
|
|
{"GTPC", {A::SUMMARY_WELL_GROUP, "Tracer Production Concentration"}},
|
|
|
|
|
{"GTIR", {A::SUMMARY_WELL_GROUP, "Tracer Injection Rate"}},
|
|
|
|
|
{"GTIT", {A::SUMMARY_WELL_GROUP, "Tracer Injection Total"}},
|
|
|
|
|
{"GTIC", {A::SUMMARY_WELL_GROUP, "Tracer Injection Concentration"}},
|
|
|
|
|
{"GTIRF", {A::SUMMARY_WELL_GROUP, "Tracer Injection Rate"}},
|
|
|
|
|
{"GTIRS", {A::SUMMARY_WELL_GROUP, "Tracer Injection Rate"}},
|
|
|
|
|
{"GTPRF", {A::SUMMARY_WELL_GROUP, "Tracer Production Rate"}},
|
|
|
|
|
{"GTPRS", {A::SUMMARY_WELL_GROUP, "Tracer Production Rate"}},
|
|
|
|
|
{"GTITF", {A::SUMMARY_WELL_GROUP, "Tracer Injection Total"}},
|
|
|
|
|
{"GTITS", {A::SUMMARY_WELL_GROUP, "Tracer Injection Total"}},
|
|
|
|
|
{"GTPTF", {A::SUMMARY_WELL_GROUP, "Tracer Production Total"}},
|
|
|
|
|
{"GTPTS", {A::SUMMARY_WELL_GROUP, "Tracer Production Total"}},
|
|
|
|
|
{"GTICF", {A::SUMMARY_WELL_GROUP, "Tracer Injection Concentration"}},
|
|
|
|
|
{"GTICS", {A::SUMMARY_WELL_GROUP, "Tracer Injection Concentration"}},
|
|
|
|
|
{"GTPCF", {A::SUMMARY_WELL_GROUP, "Tracer Production"}},
|
|
|
|
|
{"GTPCS", {A::SUMMARY_WELL_GROUP, "Tracer Production"}},
|
|
|
|
|
{"GMPR", {A::SUMMARY_WELL_GROUP, "Methane Production Rate"}},
|
|
|
|
|
{"GMPT", {A::SUMMARY_WELL_GROUP, "Methane Production Total"}},
|
|
|
|
|
{"GMIR", {A::SUMMARY_WELL_GROUP, "Methane Injection Rate"}},
|
|
|
|
|
{"GMIT", {A::SUMMARY_WELL_GROUP, "Methane Injection Total"}},
|
|
|
|
|
{"GTPRFOA", {A::SUMMARY_WELL_GROUP, "Production Rate"}},
|
|
|
|
|
{"GTPTFOA", {A::SUMMARY_WELL_GROUP, "Production Total"}},
|
|
|
|
|
{"GTIRFOA", {A::SUMMARY_WELL_GROUP, "Injection Rate"}},
|
|
|
|
|
{"GTITFOA", {A::SUMMARY_WELL_GROUP, "Injection Total"}},
|
|
|
|
|
{"GSGR", {A::SUMMARY_WELL_GROUP, "Sales Gas Rate"}},
|
|
|
|
|
{"GGSR", {A::SUMMARY_WELL_GROUP, "Sales Gas Rate"}},
|
|
|
|
|
{"GSGT", {A::SUMMARY_WELL_GROUP, "Sales Gas Total"}},
|
|
|
|
|
{"GGST", {A::SUMMARY_WELL_GROUP, "Sales Gas Total"}},
|
|
|
|
|
{"GGDC", {A::SUMMARY_WELL_GROUP, "Gas Delivery Capacity"}},
|
|
|
|
|
{"GGDCQ", {A::SUMMARY_WELL_GROUP, "Field/Group Gas DCQ"}},
|
|
|
|
|
{"GMCPL", {A::SUMMARY_WELL_GROUP, "Group Multi-level Compressor Level"}},
|
|
|
|
|
{"GPR", {A::SUMMARY_WELL_GROUP, "Group nodal Pressure in network"}},
|
|
|
|
|
{"GPRDC", {A::SUMMARY_WELL_GROUP, "Group Pressure at Delivery Capacity"}},
|
|
|
|
|
{"GGCR", {A::SUMMARY_WELL_GROUP, "Gas consumption rate, at and below this group"}},
|
|
|
|
|
{"GGCT", {A::SUMMARY_WELL_GROUP, "Gas consumption cumulative total, at and below this group"}},
|
|
|
|
|
{"GFGR", {A::SUMMARY_WELL_GROUP, "Fuel Gas rate, at and below this group"}},
|
|
|
|
|
{"GFGT", {A::SUMMARY_WELL_GROUP, "Fuel Gas cumulative total, at and below this group"}},
|
|
|
|
|
{"GGIMR", {A::SUMMARY_WELL_GROUP, "Gas import rate, at and below this group"}},
|
|
|
|
|
{"GGIMT", {A::SUMMARY_WELL_GROUP, "Gas import cumulative total, at and below this group"}},
|
|
|
|
|
{"GPRFP", {A::SUMMARY_WELL_GROUP, "Group or node Pressure in network from end of First Pass"}},
|
|
|
|
|
{"GGPRNBFP",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP,
|
|
|
|
|
"Gas flow rate along Group<75>s or node<64>s outlet branch in network, from end of First Pass"}},
|
|
|
|
|
{"GGLIR", {A::SUMMARY_WELL_GROUP, "Gas Lift Injection Rate"}},
|
|
|
|
|
{"GGCV", {A::SUMMARY_WELL_GROUP, "Gas Calorific Value"}},
|
|
|
|
|
{"GGQ", {A::SUMMARY_WELL_GROUP, "Gas molar Quality"}},
|
|
|
|
|
{"GEPR", {A::SUMMARY_WELL_GROUP, "Energy Production Rate"}},
|
|
|
|
|
{"GEPT", {A::SUMMARY_WELL_GROUP, "Energy Production Total"}},
|
|
|
|
|
{"GESR", {A::SUMMARY_WELL_GROUP, "Energy Sales Rate"}},
|
|
|
|
|
{"GEST", {A::SUMMARY_WELL_GROUP, "Energy Sales Total"}},
|
|
|
|
|
{"GEDC", {A::SUMMARY_WELL_GROUP, "Energy Delivery Capacity"}},
|
|
|
|
|
{"GEDCQ", {A::SUMMARY_WELL_GROUP, "Energy DCQ"}},
|
|
|
|
|
{"GPR", {A::SUMMARY_WELL_GROUP, "Group or node Pressure in the production network"}},
|
|
|
|
|
{"GPRG", {A::SUMMARY_WELL_GROUP, "Group or node Pressure in the gas injection network"}},
|
|
|
|
|
{"GPRW", {A::SUMMARY_WELL_GROUP, "Group or node Pressure in the water injection network"}},
|
|
|
|
|
{"GPRB",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Pressure drop along the group<75>s or node<64>s outlet branch in the production network"}},
|
|
|
|
|
{"GPRBG",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Pressure drop along the group<75>s or node<64>s inlet branch in the gas injection network"}},
|
|
|
|
|
{"GPRBW",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP,
|
|
|
|
|
"Pressure drop along the group<75>s or node<64>s inlet branch in the water injection network"}},
|
|
|
|
|
{"GALQ", {A::SUMMARY_WELL_GROUP, "ALQ in the group<75>s or node<64>s outlet branch in the production network"}},
|
|
|
|
|
{"GOPRNB",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Oil flow rate along the group<75>s or node<64>s outlet branch in the production network"}},
|
|
|
|
|
{"GWPRNB",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Water flow rate along the group<75>s or node<64>s outlet branch in the production network"}},
|
|
|
|
|
{"GGPRNB",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Gas flow rate along the group<75>s or node<64>s outlet branch in the production network"}},
|
|
|
|
|
{"GLPRNB",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Liquid flow rate along the group<75>s or node<64>s outlet branch in the production network"}},
|
|
|
|
|
{"GWIRNB",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP,
|
|
|
|
|
"Water flow rate along the group<75>s or node<64>s inlet branch in the water injection network"}},
|
|
|
|
|
{"GGIRNB",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Gas flow rate along the group<75>s or node<64>s inlet branch in the gas injection network"}},
|
|
|
|
|
{"GOMNR",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Group or node minimum oil rate as specified with GNETDP in the production network"}},
|
|
|
|
|
{"GGMNR",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Group or node minimum gas rate as specified with GNETDP in the production network"}},
|
|
|
|
|
{"GWMNR",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Group or node minimum water rate as specified with GNETDP in the production network"}},
|
|
|
|
|
{"GLMNR",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Group or node minimum liquid rate as specified with GNETDP in the production network"}},
|
|
|
|
|
{"GOMXR",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Group or node maximum oil rate as specified with GNETDP in the production network"}},
|
|
|
|
|
{"GGMXR",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Group or node maximum gas rate as specified with GNETDP in the production network"}},
|
|
|
|
|
{"GWMXR",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Group or node maximum water rate as specified with GNETDP in the production network"}},
|
|
|
|
|
{"GLMXR",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Group or node maximum liquid rate as specified with GNETDP in the production network"}},
|
|
|
|
|
{"GMNP",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Group or node minimum pressure as specified with GNETDP in the production network"}},
|
|
|
|
|
{"GMXP",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Group or node maximum pressure as specified with GNETDP in the production network"}},
|
|
|
|
|
{"GPRINC",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Group or node pressure increment as specified with GNETDP in the production network"}},
|
|
|
|
|
{"GPRDEC",
|
|
|
|
|
{A::SUMMARY_WELL_GROUP, "Group or node pressure decrement as specified with GNETDP in the production network"}},
|
|
|
|
|
{"GCPR", {A::SUMMARY_WELL_GROUP, "Polymer Production Rate"}},
|
|
|
|
|
{"GCPC", {A::SUMMARY_WELL_GROUP, "Polymer Production Concentration"}},
|
|
|
|
|
{"GCPT", {A::SUMMARY_WELL_GROUP, "Polymer Production Total"}},
|
|
|
|
|
{"GCIR", {A::SUMMARY_WELL_GROUP, "Polymer Injection Rate"}},
|
|
|
|
|
{"GCIC", {A::SUMMARY_WELL_GROUP, "Polymer Injection Concentration"}},
|
|
|
|
|
{"GCIT", {A::SUMMARY_WELL_GROUP, "Polymer Injection Total"}},
|
|
|
|
|
{"GSPR", {A::SUMMARY_WELL_GROUP, "Salt Production Rate"}},
|
|
|
|
|
{"GSPT", {A::SUMMARY_WELL_GROUP, "Salt Production Total"}},
|
|
|
|
|
{"GSIR", {A::SUMMARY_WELL_GROUP, "Salt Injection Rate"}},
|
|
|
|
|
{"GSIT", {A::SUMMARY_WELL_GROUP, "Salt Injection Total"}},
|
|
|
|
|
{"GOPRL", {A::SUMMARY_WELL_GROUP, "Group Oil Production Rate Target"}},
|
|
|
|
|
{"GOIRL", {A::SUMMARY_WELL_GROUP, "Group Oil Injection Rate Target"}},
|
|
|
|
|
{"GWPRL", {A::SUMMARY_WELL_GROUP, "Group Water Production Rate Target"}},
|
|
|
|
|
{"GWIRL", {A::SUMMARY_WELL_GROUP, "Group Water Injection Rate Target"}},
|
|
|
|
|
{"GGPRL", {A::SUMMARY_WELL_GROUP, "Group Gas Production Rate Target"}},
|
|
|
|
|
{"GGIRL", {A::SUMMARY_WELL_GROUP, "Group Gas Injection Rate Target"}},
|
|
|
|
|
{"GLPRL", {A::SUMMARY_WELL_GROUP, "Group Liquid Production Rate Target"}},
|
|
|
|
|
{"GVPRL", {A::SUMMARY_WELL_GROUP, "Group reservoir Volume Production Rate Target"}},
|
|
|
|
|
{"GVIRL", {A::SUMMARY_WELL_GROUP, "Group reservoir Volume Injection Rate Target"}},
|
|
|
|
|
{"GNPR", {A::SUMMARY_WELL_GROUP, "Solvent Production Rate"}},
|
|
|
|
|
{"GNPT", {A::SUMMARY_WELL_GROUP, "Solvent Production Total"}},
|
|
|
|
|
{"GNIR", {A::SUMMARY_WELL_GROUP, "Solvent Injection Rate"}},
|
|
|
|
|
{"GNIT", {A::SUMMARY_WELL_GROUP, "Solvent Injection Total"}},
|
|
|
|
|
{"GTPRSUR", {A::SUMMARY_WELL_GROUP, "Production Rate"}},
|
|
|
|
|
{"GTPTSUR", {A::SUMMARY_WELL_GROUP, "Production Total"}},
|
|
|
|
|
{"GTIRSUR", {A::SUMMARY_WELL_GROUP, "Injection Rate"}},
|
|
|
|
|
{"GTITSUR", {A::SUMMARY_WELL_GROUP, "Injection Total"}},
|
|
|
|
|
{"GTPRALK", {A::SUMMARY_WELL_GROUP, "Production Rate"}},
|
|
|
|
|
{"GTPTALK", {A::SUMMARY_WELL_GROUP, "Production Total"}},
|
|
|
|
|
{"GTIRALK", {A::SUMMARY_WELL_GROUP, "Injection Rate"}},
|
|
|
|
|
{"GTITALK", {A::SUMMARY_WELL_GROUP, "Injection Total"}},
|
|
|
|
|
{"GU", {A::SUMMARY_WELL_GROUP, "User-defined group quantity"}},
|
2018-08-30 04:17:37 -05:00
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
{"WOPR", {A::SUMMARY_WELL, "Oil Production Rate"}},
|
|
|
|
|
{"WOPRA", {A::SUMMARY_WELL, "Oil Production Rate above GOC"}},
|
|
|
|
|
{"WOPRB", {A::SUMMARY_WELL, "Oil Production Rate below GOC"}},
|
|
|
|
|
{"WOPTA", {A::SUMMARY_WELL, "Oil Production Total above GOC"}},
|
|
|
|
|
{"WOPTB", {A::SUMMARY_WELL, "Oil Production Total below GOC"}},
|
|
|
|
|
{"WOPR1", {A::SUMMARY_WELL, "Oil Production Rate above GOC"}},
|
|
|
|
|
{"WOPR2", {A::SUMMARY_WELL, "Oil Production Rate below GOC"}},
|
|
|
|
|
{"WOPT1", {A::SUMMARY_WELL, "Oil Production Total above GOC"}},
|
|
|
|
|
{"WOPT2", {A::SUMMARY_WELL, "Oil Production Total below GOC"}},
|
|
|
|
|
{"WOMR", {A::SUMMARY_WELL, "Oil Mass Rate"}},
|
|
|
|
|
{"WOMT", {A::SUMMARY_WELL, "Oil Mass Total"}},
|
|
|
|
|
{"WODN", {A::SUMMARY_WELL, "Oil Density at Surface Conditions"}},
|
|
|
|
|
{"WOPRH", {A::SUMMARY_WELL, "Oil Production Rate History"}},
|
|
|
|
|
{"WOPRT", {A::SUMMARY_WELL, "Oil Production Rate Target/Limit"}},
|
|
|
|
|
{"WOPRF", {A::SUMMARY_WELL, "Free Oil Production Rate"}},
|
|
|
|
|
{"WOPRS", {A::SUMMARY_WELL, "Solution Oil Production Rate"}},
|
|
|
|
|
{"WOPT", {A::SUMMARY_WELL, "Oil Production Total"}},
|
|
|
|
|
{"WOPTH", {A::SUMMARY_WELL, "Oil Production Total History"}},
|
|
|
|
|
{"WOPTF", {A::SUMMARY_WELL, "Free Oil Production Total"}},
|
|
|
|
|
{"WOPTS", {A::SUMMARY_WELL, "Solution Oil Production Total"}},
|
|
|
|
|
{"WOIR", {A::SUMMARY_WELL, "Oil Injection Rate"}},
|
|
|
|
|
{"WOIRH", {A::SUMMARY_WELL, "Oil Injection Rate History"}},
|
|
|
|
|
{"WOIRT", {A::SUMMARY_WELL, "Oil Injection Rate Target/Limit"}},
|
|
|
|
|
{"WOIT", {A::SUMMARY_WELL, "Oil Injection Total"}},
|
|
|
|
|
{"WOITH", {A::SUMMARY_WELL, "Oil Injection Total History"}},
|
|
|
|
|
{"WOPP", {A::SUMMARY_WELL, "Oil Potential Production rate"}},
|
|
|
|
|
{"WOPP2", {A::SUMMARY_WELL, "Oil Potential Production rate"}},
|
|
|
|
|
{"WOPI", {A::SUMMARY_WELL, "Oil Potential Injection rate"}},
|
|
|
|
|
{"WOPI2", {A::SUMMARY_WELL, "Oil Potential Injection rate"}},
|
|
|
|
|
{"WOPGR", {A::SUMMARY_WELL, "Oil Production Guide Rate"}},
|
|
|
|
|
{"WOIGR", {A::SUMMARY_WELL, "Oil Injection Guide Rate"}},
|
|
|
|
|
{"WOVPR", {A::SUMMARY_WELL, "Oil Voidage Production Rate"}},
|
|
|
|
|
{"WOVPT", {A::SUMMARY_WELL, "Oil Voidage Production Total"}},
|
|
|
|
|
{"WOVIR", {A::SUMMARY_WELL, "Oil Voidage Injection Rate"}},
|
|
|
|
|
{"WOVIT", {A::SUMMARY_WELL, "Oil Voidage Injection Total"}},
|
|
|
|
|
{"WOnPR", {A::SUMMARY_WELL, "nth separator stage oil rate"}},
|
|
|
|
|
{"WOnPT", {A::SUMMARY_WELL, "nth separator stage oil total"}},
|
|
|
|
|
{"WWPR", {A::SUMMARY_WELL, "Water Production Rate"}},
|
|
|
|
|
{"WWMR", {A::SUMMARY_WELL, "Water Mass Rate"}},
|
|
|
|
|
{"WWMT", {A::SUMMARY_WELL, "Water Mass Total"}},
|
|
|
|
|
{"WWPRH", {A::SUMMARY_WELL, "Water Production Rate History"}},
|
|
|
|
|
{"WWPRT", {A::SUMMARY_WELL, "Water Production Rate Target/Limit"}},
|
|
|
|
|
{"WWPT", {A::SUMMARY_WELL, "Water Production Total"}},
|
|
|
|
|
{"WWPTH", {A::SUMMARY_WELL, "Water Production Total History"}},
|
|
|
|
|
{"WWIR", {A::SUMMARY_WELL, "Water Injection Rate"}},
|
|
|
|
|
{"WWIRH", {A::SUMMARY_WELL, "Water Injection Rate History"}},
|
|
|
|
|
{"WWIRT", {A::SUMMARY_WELL, "Water Injection Rate Target/Limit"}},
|
|
|
|
|
{"WWIT", {A::SUMMARY_WELL, "Water Injection Total"}},
|
|
|
|
|
{"WWITH", {A::SUMMARY_WELL, "Water Injection Total History"}},
|
|
|
|
|
{"WWPP", {A::SUMMARY_WELL, "Water Potential Production rate"}},
|
|
|
|
|
{"WWPP2", {A::SUMMARY_WELL, "Water Potential Production rate"}},
|
|
|
|
|
{"WWPI", {A::SUMMARY_WELL, "Water Potential Injection rate"}},
|
|
|
|
|
{"WWIP", {A::SUMMARY_WELL, "Water Potential Injection rate"}},
|
|
|
|
|
{"WWPI2", {A::SUMMARY_WELL, "Water Potential Injection rate"}},
|
|
|
|
|
{"WWIP2", {A::SUMMARY_WELL, "Water Potential Injection rate"}},
|
|
|
|
|
{"WWPGR", {A::SUMMARY_WELL, "Water Production Guide Rate"}},
|
|
|
|
|
{"WWIGR", {A::SUMMARY_WELL, "Water Injection Guide Rate"}},
|
|
|
|
|
{"WWVPR", {A::SUMMARY_WELL, "Water Voidage Production Rate"}},
|
|
|
|
|
{"WWVPT", {A::SUMMARY_WELL, "Water Voidage Production Total"}},
|
|
|
|
|
{"WWVIR", {A::SUMMARY_WELL, "Water Voidage Injection Rate"}},
|
|
|
|
|
{"WWVIT", {A::SUMMARY_WELL, "Water Voidage Injection Total"}},
|
|
|
|
|
{"WWPIR", {A::SUMMARY_WELL, "Ratio of produced water to injected water (percentage)"}},
|
|
|
|
|
{"WWMPR", {A::SUMMARY_WELL, "Water component molar production rate"}},
|
|
|
|
|
{"WWMPT", {A::SUMMARY_WELL, "Water component molar production total"}},
|
|
|
|
|
{"WWMIR", {A::SUMMARY_WELL, "Water component molar injection rate"}},
|
|
|
|
|
{"WWMIT", {A::SUMMARY_WELL, "Water component molar injection total"}},
|
|
|
|
|
{"WGPR", {A::SUMMARY_WELL, "Gas Production Rate"}},
|
|
|
|
|
{"WGPRA", {A::SUMMARY_WELL, "Gas Production Rate above"}},
|
|
|
|
|
{"WGPRB", {A::SUMMARY_WELL, "Gas Production Rate below"}},
|
|
|
|
|
{"WGPTA", {A::SUMMARY_WELL, "Gas Production Total above"}},
|
|
|
|
|
{"WGPTB", {A::SUMMARY_WELL, "Gas Production Total below"}},
|
|
|
|
|
{"WGPR1", {A::SUMMARY_WELL, "Gas Production Rate above GOC"}},
|
|
|
|
|
{"WGPR2", {A::SUMMARY_WELL, "Gas Production Rate below GOC"}},
|
|
|
|
|
{"WGPT1", {A::SUMMARY_WELL, "Gas Production Total above GOC"}},
|
|
|
|
|
{"WGPT2", {A::SUMMARY_WELL, "Gas Production Total below GOC"}},
|
|
|
|
|
{"WGMR", {A::SUMMARY_WELL, "Gas Mass Rate"}},
|
|
|
|
|
{"WGMT", {A::SUMMARY_WELL, "Gas Mass Total"}},
|
|
|
|
|
{"WGDN", {A::SUMMARY_WELL, "Gas Density at Surface Conditions"}},
|
|
|
|
|
{"WGPRH", {A::SUMMARY_WELL, "Gas Production Rate History"}},
|
|
|
|
|
{"WGPRT", {A::SUMMARY_WELL, "Gas Production Rate Target/Limit"}},
|
|
|
|
|
{"WGPRF", {A::SUMMARY_WELL, "Free Gas Production Rate"}},
|
|
|
|
|
{"WGPRS", {A::SUMMARY_WELL, "Solution Gas Production Rate"}},
|
|
|
|
|
{"WGPT", {A::SUMMARY_WELL, "Gas Production Total"}},
|
|
|
|
|
{"WGPTH", {A::SUMMARY_WELL, "Gas Production Total History"}},
|
|
|
|
|
{"WGPTF", {A::SUMMARY_WELL, "Free Gas Production Total"}},
|
|
|
|
|
{"WGPTS", {A::SUMMARY_WELL, "Solution Gas Production Total"}},
|
|
|
|
|
{"WGIR", {A::SUMMARY_WELL, "Gas Injection Rate"}},
|
|
|
|
|
{"WGIRH", {A::SUMMARY_WELL, "Gas Injection Rate History"}},
|
|
|
|
|
{"WGIRT", {A::SUMMARY_WELL, "Gas Injection Rate Target/Limit"}},
|
|
|
|
|
{"WGIT", {A::SUMMARY_WELL, "Gas Injection Total"}},
|
|
|
|
|
{"WGITH", {A::SUMMARY_WELL, "Gas Injection Total History"}},
|
|
|
|
|
{"WGPP", {A::SUMMARY_WELL, "Gas Potential Production rate"}},
|
|
|
|
|
{"WGPP2", {A::SUMMARY_WELL, "Gas Potential Production rate"}},
|
|
|
|
|
{"WGPPS", {A::SUMMARY_WELL, "Solution"}},
|
|
|
|
|
{"WGPPS2", {A::SUMMARY_WELL, "Solution"}},
|
|
|
|
|
{"WGPPF", {A::SUMMARY_WELL, "Free Gas Potential Production rate"}},
|
|
|
|
|
{"WGPPF2", {A::SUMMARY_WELL, "Free Gas Potential Production rate"}},
|
|
|
|
|
{"WGPI", {A::SUMMARY_WELL, "Gas Potential Injection rate"}},
|
|
|
|
|
{"WGIP", {A::SUMMARY_WELL, "Gas Potential Injection rate"}},
|
|
|
|
|
{"WGPI2", {A::SUMMARY_WELL, "Gas Potential Injection rate"}},
|
|
|
|
|
{"WGIP2", {A::SUMMARY_WELL, "Gas Potential Injection rate"}},
|
|
|
|
|
{"WGPGR", {A::SUMMARY_WELL, "Gas Production Guide Rate"}},
|
|
|
|
|
{"WGIGR", {A::SUMMARY_WELL, "Gas Injection Guide Rate"}},
|
|
|
|
|
{"WGLIR", {A::SUMMARY_WELL, "Gas Lift Injection Rate"}},
|
|
|
|
|
{"WWGPR", {A::SUMMARY_WELL, "Wet Gas Production Rate"}},
|
|
|
|
|
{"WWGPT", {A::SUMMARY_WELL, "Wet Gas Production Total"}},
|
|
|
|
|
{"WWGPRH", {A::SUMMARY_WELL, "Wet Gas Production Rate History"}},
|
|
|
|
|
{"WWGIR", {A::SUMMARY_WELL, "Wet Gas Injection Rate"}},
|
|
|
|
|
{"WWGIT", {A::SUMMARY_WELL, "Wet Gas Injection Total"}},
|
|
|
|
|
{"WGnPR", {A::SUMMARY_WELL, "nth separator stage gas rate"}},
|
|
|
|
|
{"WGnPT", {A::SUMMARY_WELL, "nth separator stage gas total"}},
|
|
|
|
|
{"WGVPR", {A::SUMMARY_WELL, "Gas Voidage Production Rate"}},
|
|
|
|
|
{"WGVPT", {A::SUMMARY_WELL, "Gas Voidage Production Total"}},
|
|
|
|
|
{"WGVIR", {A::SUMMARY_WELL, "Gas Voidage Injection Rate"}},
|
|
|
|
|
{"WGVIT", {A::SUMMARY_WELL, "Gas Voidage Injection Total"}},
|
|
|
|
|
{"WGQ", {A::SUMMARY_WELL, "Gas Quality"}},
|
|
|
|
|
{"WLPR", {A::SUMMARY_WELL, "Liquid Production Rate"}},
|
|
|
|
|
{"WLPRH", {A::SUMMARY_WELL, "Liquid Production Rate History"}},
|
|
|
|
|
{"WLPRT", {A::SUMMARY_WELL, "Liquid Production Rate Target/Limit"}},
|
|
|
|
|
{"WLPT", {A::SUMMARY_WELL, "Liquid Production Total"}},
|
|
|
|
|
{"WLPTH", {A::SUMMARY_WELL, "Liquid Production Total History"}},
|
|
|
|
|
{"WVPR", {A::SUMMARY_WELL, "Res Volume Production Rate"}},
|
|
|
|
|
{"WVPRT", {A::SUMMARY_WELL, "Res Volume Production Rate Target/Limit"}},
|
|
|
|
|
{"WVPT", {A::SUMMARY_WELL, "Res Volume Production Total"}},
|
|
|
|
|
{"WVPGR", {A::SUMMARY_WELL, "Res Volume Production Guide Rate"}},
|
|
|
|
|
{"WVIR", {A::SUMMARY_WELL, "Res Volume Injection Rate"}},
|
|
|
|
|
{"WVIRT", {A::SUMMARY_WELL, "Res Volume Injection Rate Target/Limit"}},
|
|
|
|
|
{"WVIT", {A::SUMMARY_WELL, "Res Volume Injection Total"}},
|
|
|
|
|
{"WWCT", {A::SUMMARY_WELL, "Water Cut"}},
|
|
|
|
|
{"WWCTH", {A::SUMMARY_WELL, "Water Cut History"}},
|
|
|
|
|
{"WGOR", {A::SUMMARY_WELL, "Gas-Oil Ratio"}},
|
|
|
|
|
{"WGORH", {A::SUMMARY_WELL, "Gas-Oil Ratio History"}},
|
|
|
|
|
{"WOGR", {A::SUMMARY_WELL, "Oil-Gas Ratio"}},
|
|
|
|
|
{"WOGRH", {A::SUMMARY_WELL, "Oil-Gas Ratio History"}},
|
|
|
|
|
{"WWGR", {A::SUMMARY_WELL, "Water-Gas Ratio"}},
|
|
|
|
|
{"WWGRH", {A::SUMMARY_WELL, "Water-Gas Ratio History"}},
|
|
|
|
|
{"WGLR", {A::SUMMARY_WELL, "Gas-Liquid Ratio"}},
|
|
|
|
|
{"WGLRH", {A::SUMMARY_WELL, "Gas-Liquid Ratio History"}},
|
|
|
|
|
{"WBGLR", {A::SUMMARY_WELL, "Bottom hole Gas-Liquid Ratio"}},
|
|
|
|
|
{"WBHP", {A::SUMMARY_WELL, "Bottom Hole Pressure"}},
|
|
|
|
|
{"WBHPH", {A::SUMMARY_WELL, "Bottom Hole Pressure History,"}},
|
|
|
|
|
{"WBHPT", {A::SUMMARY_WELL, "Bottom Hole Pressure Target/Limit"}},
|
|
|
|
|
{"WTHP", {A::SUMMARY_WELL, "Tubing Head Pressure"}},
|
|
|
|
|
{"WTHPH", {A::SUMMARY_WELL, "Tubing Head Pressure History,"}},
|
|
|
|
|
{"WPI", {A::SUMMARY_WELL, "Productivity Index of well<6C>s preferred phase"}},
|
|
|
|
|
{"WPIO", {A::SUMMARY_WELL, "Oil phase PI"}},
|
|
|
|
|
{"WPIG", {A::SUMMARY_WELL, "Gas phase PI"}},
|
|
|
|
|
{"WPIW", {A::SUMMARY_WELL, "Water phase PI"}},
|
|
|
|
|
{"WPIL", {A::SUMMARY_WELL, "Liquid phase PI"}},
|
|
|
|
|
{"WBP", {A::SUMMARY_WELL, "One-point Pressure Average"}},
|
|
|
|
|
{"WBP4", {A::SUMMARY_WELL, "Four-point Pressure Average"}},
|
|
|
|
|
{"WBP5", {A::SUMMARY_WELL, "Five-point Pressure Average"}},
|
|
|
|
|
{"WBP9", {A::SUMMARY_WELL, "Nine-point Pressure Average"}},
|
|
|
|
|
{"WPI1", {A::SUMMARY_WELL, "Productivity Index based on the value of WBP"}},
|
|
|
|
|
{"WPI4", {A::SUMMARY_WELL, "Productivity Index based on the value of WBP4"}},
|
|
|
|
|
{"WPI5", {A::SUMMARY_WELL, "Productivity Index based on the value of WBP5"}},
|
|
|
|
|
{"WPI9", {A::SUMMARY_WELL, "Productivity Index based on the value of WBP9"}},
|
|
|
|
|
{"WHD",
|
|
|
|
|
{A::SUMMARY_WELL,
|
|
|
|
|
"Hydraulic head in well based on the reference depth given in HYDRHEAD and the well<6C>s reference depth"}},
|
|
|
|
|
{"WHDF",
|
|
|
|
|
{A::SUMMARY_WELL,
|
|
|
|
|
"Hydraulic head in well based on the reference depth given in HYDRHEAD and the well<6C>s reference depth "
|
|
|
|
|
"calculated at freshwater conditions"}},
|
|
|
|
|
{"WSTAT", {A::SUMMARY_WELL, "Well State Indicator"}},
|
|
|
|
|
{"WMCTL", {A::SUMMARY_WELL, "Mode of Control"}},
|
|
|
|
|
{"WMCON", {A::SUMMARY_WELL, "The number of connections capable of flowing in the well"}},
|
|
|
|
|
{"WEPR", {A::SUMMARY_WELL, "Energy Production Rate"}},
|
|
|
|
|
{"WEPT", {A::SUMMARY_WELL, "Energy Production Total"}},
|
|
|
|
|
{"WEFF", {A::SUMMARY_WELL, "Efficiency Factor"}},
|
|
|
|
|
{"WEFFG", {A::SUMMARY_WELL, "Product of efficiency factors of the well and all its superior groups"}},
|
|
|
|
|
{"WALQ", {A::SUMMARY_WELL, "Well Artificial Lift Quantity"}},
|
|
|
|
|
{"WMVFP", {A::SUMMARY_WELL, "VFP table number used by the well"}},
|
|
|
|
|
{"WNLPR", {A::SUMMARY_WELL, "NGL Production Rate"}},
|
|
|
|
|
{"WNLPT", {A::SUMMARY_WELL, "NGL Production Total"}},
|
|
|
|
|
{"WNLPRH", {A::SUMMARY_WELL, "NGL Production Rate History"}},
|
|
|
|
|
{"WNLPTH", {A::SUMMARY_WELL, "NGL Production Total History"}},
|
|
|
|
|
{"WNLPRT", {A::SUMMARY_WELL, "NGL Production Rate Target"}},
|
|
|
|
|
{"WAMF", {A::SUMMARY_WELL, "Component aqueous mole fraction, from producing completions"}},
|
|
|
|
|
{"WXMF", {A::SUMMARY_WELL, "Liquid Mole Fraction"}},
|
|
|
|
|
{"WYMF", {A::SUMMARY_WELL, "Vapor Mole Fraction"}},
|
|
|
|
|
{"WXMFn", {A::SUMMARY_WELL, "Liquid Mole Fraction for nth separator stage"}},
|
|
|
|
|
{"WYMFn", {A::SUMMARY_WELL, "Vapor Mole Fraction for nth separator stage"}},
|
|
|
|
|
{"WZMF", {A::SUMMARY_WELL, "Total Mole Fraction"}},
|
|
|
|
|
{"WCMPR", {A::SUMMARY_WELL, "Hydrocarbon Component Molar Production Rates"}},
|
|
|
|
|
{"WCMPT", {A::SUMMARY_WELL, "Hydrocarbon Component"}},
|
|
|
|
|
{"WCMIR", {A::SUMMARY_WELL, "Hydrocarbon Component Molar Injection Rates"}},
|
|
|
|
|
{"WCMIT", {A::SUMMARY_WELL, "Hydrocarbon Component Molar Injection Totals"}},
|
|
|
|
|
{"WCGIR", {A::SUMMARY_WELL, "Hydrocarbon Component Gas Injection Rate"}},
|
|
|
|
|
{"WCGPR", {A::SUMMARY_WELL, "Hydrocarbon Component Gas Production Rate"}},
|
|
|
|
|
{"WCOPR", {A::SUMMARY_WELL, "Hydrocarbon Component Oil Production Rate"}},
|
|
|
|
|
{"WHMIR", {A::SUMMARY_WELL, "Hydrocarbon Molar Injection Rate"}},
|
|
|
|
|
{"WHMIT", {A::SUMMARY_WELL, "Hydrocarbon Molar Injection Total"}},
|
|
|
|
|
{"WHMPR", {A::SUMMARY_WELL, "Hydrocarbon Molar Production Rate"}},
|
|
|
|
|
{"WHMPT", {A::SUMMARY_WELL, "Hydrocarbon Molar Production Total"}},
|
|
|
|
|
{"WCHMR", {A::SUMMARY_WELL, "Hydrocarbon Component"}},
|
|
|
|
|
{"WCHMT", {A::SUMMARY_WELL, "Hydrocarbon Component"}},
|
|
|
|
|
{"WCWGPR", {A::SUMMARY_WELL, "Hydrocarbon Component Wet Gas Production Rate"}},
|
|
|
|
|
{"WCWGPT", {A::SUMMARY_WELL, "Hydrocarbon Component Wet Gas Production Total"}},
|
|
|
|
|
{"WCWGIR", {A::SUMMARY_WELL, "Hydrocarbon Component Wet Gas Injection Rate"}},
|
|
|
|
|
{"WCWGIT", {A::SUMMARY_WELL, "Hydrocarbon Component Wet Gas Injection Total"}},
|
|
|
|
|
{"WCGMR", {A::SUMMARY_WELL, "Hydrocarbon component"}},
|
|
|
|
|
{"WCGMT", {A::SUMMARY_WELL, "Hydrocarbon component"}},
|
|
|
|
|
{"WCOMR", {A::SUMMARY_WELL, "Hydrocarbon component"}},
|
|
|
|
|
{"WCOMT", {A::SUMMARY_WELL, "Hydrocarbon component"}},
|
|
|
|
|
{"WCNMR", {A::SUMMARY_WELL, "Hydrocarbon component molar rates in the NGL phase"}},
|
|
|
|
|
{"WCNWR", {A::SUMMARY_WELL, "Hydrocarbon component mass rates in the NGL phase"}},
|
|
|
|
|
{"WCGMRn", {A::SUMMARY_WELL, "Hydrocarbon component molar rates in the gas phase for nth separator stage"}},
|
|
|
|
|
{"WCGRn", {A::SUMMARY_WELL, "Hydrocarbon component molar rates in the gas phase for nth separator stage"}},
|
|
|
|
|
{"WCOMRn", {A::SUMMARY_WELL, "Hydrocarbon component"}},
|
|
|
|
|
{"WCORn", {A::SUMMARY_WELL, "Hydrocarbon component"}},
|
|
|
|
|
{"WMUF", {A::SUMMARY_WELL, "Make-up fraction"}},
|
|
|
|
|
{"WTHT", {A::SUMMARY_WELL, "Tubing Head Temperature"}},
|
|
|
|
|
{"WMMW", {A::SUMMARY_WELL, "Mean molecular weight of wellstream"}},
|
|
|
|
|
{"WPWE0", {A::SUMMARY_WELL, "Well drilled indicator"}},
|
|
|
|
|
{"WPWE1", {A::SUMMARY_WELL, "Connections opened indicator"}},
|
|
|
|
|
{"WPWE2", {A::SUMMARY_WELL, "Connections closed indicator"}},
|
|
|
|
|
{"WPWE3", {A::SUMMARY_WELL, "Connections closed to bottom indicator"}},
|
|
|
|
|
{"WPWE4", {A::SUMMARY_WELL, "Well stopped indicator"}},
|
|
|
|
|
{"WPWE5", {A::SUMMARY_WELL, "Injector to producer indicator"}},
|
|
|
|
|
{"WPWE6", {A::SUMMARY_WELL, "Producer to injector indicator"}},
|
|
|
|
|
{"WPWE7", {A::SUMMARY_WELL, "Well shut indicator"}},
|
|
|
|
|
{"WPWEM", {A::SUMMARY_WELL, "WELEVNT output mnemonic"}},
|
|
|
|
|
{"WDRPR", {A::SUMMARY_WELL, "Well drilling priority"}},
|
|
|
|
|
{"WBHWCn", {A::SUMMARY_WELL, "Derivative of well BHP with respect to parameter n"}},
|
|
|
|
|
{"WGFWCn", {A::SUMMARY_WELL, "Derivative of well gas flow rate with respect to parameter n"}},
|
|
|
|
|
{"WOFWCn", {A::SUMMARY_WELL, "Derivative of well oil flow rate with respect to parameter n"}},
|
|
|
|
|
{"WWFWCn", {A::SUMMARY_WELL, "Derivative of water flow rate with respect to parameter n"}},
|
|
|
|
|
{"WTPR", {A::SUMMARY_WELL, "Tracer Production Rate"}},
|
|
|
|
|
{"WTPT", {A::SUMMARY_WELL, "Tracer Production Total"}},
|
|
|
|
|
{"WTPC", {A::SUMMARY_WELL, "Tracer Production Concentration"}},
|
|
|
|
|
{"WTIR", {A::SUMMARY_WELL, "Tracer Injection Rate"}},
|
|
|
|
|
{"WTIT", {A::SUMMARY_WELL, "Tracer Injection Total"}},
|
|
|
|
|
{"WTIC", {A::SUMMARY_WELL, "Tracer Injection Concentration"}},
|
|
|
|
|
{"WTMR", {A::SUMMARY_WELL, "Traced mass Rate"}},
|
|
|
|
|
{"WTMT", {A::SUMMARY_WELL, "Traced mass Total"}},
|
|
|
|
|
{"WTQR", {A::SUMMARY_WELL, "Traced molar Rate"}},
|
|
|
|
|
{"WTCM", {A::SUMMARY_WELL, "Tracer Carrier molar Rate"}},
|
|
|
|
|
{"WTMF", {A::SUMMARY_WELL, "Traced molar fraction"}},
|
|
|
|
|
{"WTVL", {A::SUMMARY_WELL, "Traced liquid volume rate"}},
|
|
|
|
|
{"WTVV", {A::SUMMARY_WELL, "Traced vapor volume rate"}},
|
|
|
|
|
{"WTTL", {A::SUMMARY_WELL, "Traced liquid volume total"}},
|
|
|
|
|
{"WTTV", {A::SUMMARY_WELL, "Traced vapor volume total"}},
|
|
|
|
|
{"WTML", {A::SUMMARY_WELL, "Traced mass liquid rate"}},
|
|
|
|
|
{"WTMV", {A::SUMMARY_WELL, "Traced mass vapor rate"}},
|
|
|
|
|
{"WTLM", {A::SUMMARY_WELL, "Traced mass liquid total"}},
|
|
|
|
|
{"WTVM", {A::SUMMARY_WELL, "Traced mass vapor total"}},
|
|
|
|
|
{"WAPI", {A::SUMMARY_WELL, "Oil API"}},
|
|
|
|
|
{"WSPR", {A::SUMMARY_WELL, "Salt Production Rate"}},
|
|
|
|
|
{"WSPT", {A::SUMMARY_WELL, "Salt Production Total"}},
|
|
|
|
|
{"WSIR", {A::SUMMARY_WELL, "Salt Injection Rate"}},
|
|
|
|
|
{"WSIT", {A::SUMMARY_WELL, "Salt Injection Total"}},
|
|
|
|
|
{"WSPC", {A::SUMMARY_WELL, "Salt Production Concentration"}},
|
|
|
|
|
{"WSIC", {A::SUMMARY_WELL, "Salt Injection Concentration"}},
|
|
|
|
|
{"WTPCHEA", {A::SUMMARY_WELL, "Production Temperature"}},
|
|
|
|
|
{"WTICHEA", {A::SUMMARY_WELL, "Injection Temperature"}},
|
|
|
|
|
{"WTPRHEA", {A::SUMMARY_WELL, "Energy flows"}},
|
|
|
|
|
{"WTPTHEA", {A::SUMMARY_WELL, "Energy Production Total"}},
|
|
|
|
|
{"WTIRHEA", {A::SUMMARY_WELL, "Energy flows"}},
|
|
|
|
|
{"WTITHEA", {A::SUMMARY_WELL, "Energy Injection Total"}},
|
|
|
|
|
{"WTPR", {A::SUMMARY_WELL, "Tracer Production Rate"}},
|
|
|
|
|
{"WTPT", {A::SUMMARY_WELL, "Tracer Production Total"}},
|
|
|
|
|
{"WTPC", {A::SUMMARY_WELL, "Tracer Production Concentration"}},
|
|
|
|
|
{"WTIR", {A::SUMMARY_WELL, "Tracer Injection Rate"}},
|
|
|
|
|
{"WTIT", {A::SUMMARY_WELL, "Tracer Injection Total"}},
|
|
|
|
|
{"WTIC", {A::SUMMARY_WELL, "Tracer Injection Concentration"}},
|
|
|
|
|
{"WTIRF", {A::SUMMARY_WELL, "Tracer Injection Rate"}},
|
|
|
|
|
{"WTIRS", {A::SUMMARY_WELL, "Tracer Injection Rate"}},
|
|
|
|
|
{"WTPRF", {A::SUMMARY_WELL, "Tracer Production Rate"}},
|
|
|
|
|
{"WTPRS", {A::SUMMARY_WELL, "Tracer Production Rate"}},
|
|
|
|
|
{"WTITF", {A::SUMMARY_WELL, "Tracer Injection Total"}},
|
|
|
|
|
{"WTITS", {A::SUMMARY_WELL, "Tracer Injection Total"}},
|
|
|
|
|
{"WTPTF", {A::SUMMARY_WELL, "Tracer Production Total"}},
|
|
|
|
|
{"WTPTS", {A::SUMMARY_WELL, "Tracer Production Total"}},
|
|
|
|
|
{"WTICF", {A::SUMMARY_WELL, "Tracer Injection Concentration"}},
|
|
|
|
|
{"WTICS", {A::SUMMARY_WELL, "Tracer Injection Concentration"}},
|
|
|
|
|
{"WTPCF", {A::SUMMARY_WELL, "Tracer Production"}},
|
|
|
|
|
{"WTPCS", {A::SUMMARY_WELL, "Tracer Production"}},
|
|
|
|
|
{"WMPR", {A::SUMMARY_WELL, "Methane Production Rate"}},
|
|
|
|
|
{"WMPT", {A::SUMMARY_WELL, "Methane Production Total"}},
|
|
|
|
|
{"WMIR", {A::SUMMARY_WELL, "Methane Injection Rate"}},
|
|
|
|
|
{"WMIT", {A::SUMMARY_WELL, "Methane Injection Total"}},
|
|
|
|
|
{"WTPRFOA", {A::SUMMARY_WELL, "Production Rate"}},
|
|
|
|
|
{"WTPTFOA", {A::SUMMARY_WELL, "Production Total"}},
|
|
|
|
|
{"WTIRFOA", {A::SUMMARY_WELL, "Injection Rate"}},
|
|
|
|
|
{"WTITFOA", {A::SUMMARY_WELL, "Injection Total"}},
|
|
|
|
|
{"WGDC", {A::SUMMARY_WELL, "Gas Delivery Capacity"}},
|
|
|
|
|
{"NGOPAS", {A::SUMMARY_WELL, "Number of iterations to converge DCQ in first pass"}},
|
|
|
|
|
{"WGPRFP", {A::SUMMARY_WELL, "Well Gas Production Rate from end of First Pass"}},
|
|
|
|
|
{"WTHPFP", {A::SUMMARY_WELL, "Well Tubing Head Pressure from end of First Pass"}},
|
|
|
|
|
{"WBHPFP", {A::SUMMARY_WELL, "Well Bottom Hole Pressure from end of First Pass"}},
|
|
|
|
|
{"WGLIR", {A::SUMMARY_WELL, "Gas Lift Injection Rate"}},
|
|
|
|
|
{"WOGLR", {A::SUMMARY_WELL, "Well Oil Gas Lift Ratio"}},
|
|
|
|
|
{"WGCV", {A::SUMMARY_WELL, "Gas Calorific Value"}},
|
|
|
|
|
{"WGQ", {A::SUMMARY_WELL, "Gas molar Quality"}},
|
|
|
|
|
{"WEPR", {A::SUMMARY_WELL, "Energy Production Rate"}},
|
|
|
|
|
{"WEPT", {A::SUMMARY_WELL, "Energy Production Total"}},
|
|
|
|
|
{"WEDC", {A::SUMMARY_WELL, "Energy Delivery Capacity"}},
|
|
|
|
|
{"WCPR", {A::SUMMARY_WELL, "Polymer Production Rate"}},
|
|
|
|
|
{"WCPC", {A::SUMMARY_WELL, "Polymer Production Concentration"}},
|
|
|
|
|
{"WCPT", {A::SUMMARY_WELL, "Polymer Production Total"}},
|
|
|
|
|
{"WCIR", {A::SUMMARY_WELL, "Polymer Injection Rate"}},
|
|
|
|
|
{"WCIC", {A::SUMMARY_WELL, "Polymer Injection Concentration"}},
|
|
|
|
|
{"WCIT", {A::SUMMARY_WELL, "Polymer Injection Total"}},
|
|
|
|
|
{"WSPR", {A::SUMMARY_WELL, "Salt Production Rate"}},
|
|
|
|
|
{"WSPT", {A::SUMMARY_WELL, "Salt Production Total"}},
|
|
|
|
|
{"WSIR", {A::SUMMARY_WELL, "Salt Injection Rate"}},
|
|
|
|
|
{"WSIT", {A::SUMMARY_WELL, "Salt Injection Total"}},
|
|
|
|
|
{"WNPR", {A::SUMMARY_WELL, "Solvent Production Rate"}},
|
|
|
|
|
{"WNPT", {A::SUMMARY_WELL, "Solvent Production Total"}},
|
|
|
|
|
{"WNIR", {A::SUMMARY_WELL, "Solvent Injection Rate"}},
|
|
|
|
|
{"WNIT", {A::SUMMARY_WELL, "Solvent Injection Total"}},
|
|
|
|
|
{"WTPRSUR", {A::SUMMARY_WELL, "Production Rate"}},
|
|
|
|
|
{"WTPTSUR", {A::SUMMARY_WELL, "Production Total"}},
|
|
|
|
|
{"WTIRSUR", {A::SUMMARY_WELL, "Injection Rate"}},
|
|
|
|
|
{"WTITSUR", {A::SUMMARY_WELL, "Injection Total"}},
|
|
|
|
|
{"WTPRALK", {A::SUMMARY_WELL, "Production Rate"}},
|
|
|
|
|
{"WTPTALK", {A::SUMMARY_WELL, "Production Total"}},
|
|
|
|
|
{"WTIRALK", {A::SUMMARY_WELL, "Injection Rate"}},
|
|
|
|
|
{"WTITALK", {A::SUMMARY_WELL, "Injection Total"}},
|
|
|
|
|
{"WU", {A::SUMMARY_WELL, "User-defined well quantity"}},
|
2017-10-16 08:13:31 -05:00
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
// Future CONNECTION vectors
|
|
|
|
|
{"COFR", {A::SUMMARY_WELL_COMPLETION, "Oil Flow Rate"}},
|
|
|
|
|
{"COFRF", {A::SUMMARY_WELL_COMPLETION, "Free Oil Flow Rate"}},
|
|
|
|
|
{"COFRS", {A::SUMMARY_WELL_COMPLETION, "Solution oil flow rate"}},
|
|
|
|
|
{"COFRU",
|
|
|
|
|
{A::SUMMARY_WELL_COMPLETION, "Sum of connection oil flow rates upstream of, and including, this connection"}},
|
|
|
|
|
{"COPR", {A::SUMMARY_WELL_COMPLETION, "Oil Production Rate"}},
|
|
|
|
|
{"COPT", {A::SUMMARY_WELL_COMPLETION, "Oil Production Total"}},
|
|
|
|
|
{"COPTF", {A::SUMMARY_WELL_COMPLETION, "Free Oil Production Total"}},
|
|
|
|
|
{"COPTS", {A::SUMMARY_WELL_COMPLETION, "Solution Oil Production Total"}},
|
|
|
|
|
{"COIT", {A::SUMMARY_WELL_COMPLETION, "Oil Injection Total"}},
|
|
|
|
|
{"COPP", {A::SUMMARY_WELL_COMPLETION, "Oil Potential Production rate"}},
|
|
|
|
|
{"COPI", {A::SUMMARY_WELL_COMPLETION, "Oil Potential Injection rate"}},
|
|
|
|
|
{"CWFR", {A::SUMMARY_WELL_COMPLETION, "Water Flow Rate"}},
|
|
|
|
|
{"CWFRU",
|
|
|
|
|
{A::SUMMARY_WELL_COMPLETION, "Sum of connection water flow rates upstream of, and including, this connection"}},
|
|
|
|
|
{"CWPR", {A::SUMMARY_WELL_COMPLETION, "Water Production Rate"}},
|
|
|
|
|
{"CWPT", {A::SUMMARY_WELL_COMPLETION, "Water Production Total"}},
|
|
|
|
|
{"CWIR", {A::SUMMARY_WELL_COMPLETION, "Water Injection Rate"}},
|
|
|
|
|
{"CWIT", {A::SUMMARY_WELL_COMPLETION, "Water Injection Total"}},
|
|
|
|
|
{"CWPP", {A::SUMMARY_WELL_COMPLETION, "Water Potential Production rate"}},
|
|
|
|
|
{"CWPI", {A::SUMMARY_WELL_COMPLETION, "Water Potential Injection rate"}},
|
|
|
|
|
{"CGFR", {A::SUMMARY_WELL_COMPLETION, "Gas Flow Rate"}},
|
|
|
|
|
{"CGFRF", {A::SUMMARY_WELL_COMPLETION, "Free Gas Flow Rate"}},
|
|
|
|
|
{"CGFRS", {A::SUMMARY_WELL_COMPLETION, "Solution Gas Flow Rate"}},
|
|
|
|
|
{"CGFRU",
|
|
|
|
|
{A::SUMMARY_WELL_COMPLETION, "Sum of connection gas flow rates upstream of, and including, this connection"}},
|
|
|
|
|
{"CGPR", {A::SUMMARY_WELL_COMPLETION, "Gas Production Rate "}},
|
|
|
|
|
{"CGPT", {A::SUMMARY_WELL_COMPLETION, "Gas Production Total"}},
|
|
|
|
|
{"CGPTF", {A::SUMMARY_WELL_COMPLETION, "Free Gas Production Total"}},
|
|
|
|
|
{"CGPTS", {A::SUMMARY_WELL_COMPLETION, "Solution Gas Production Total"}},
|
|
|
|
|
{"CGIR", {A::SUMMARY_WELL_COMPLETION, "Gas Injection Rate"}},
|
|
|
|
|
{"CGIT", {A::SUMMARY_WELL_COMPLETION, "Gas Injection Total"}},
|
|
|
|
|
{"CGPP", {A::SUMMARY_WELL_COMPLETION, "Gas Potential Production rate"}},
|
|
|
|
|
{"CGPI", {A::SUMMARY_WELL_COMPLETION, "Gas Potential Injection rate"}},
|
|
|
|
|
{"CGQ", {A::SUMMARY_WELL_COMPLETION, "Gas Quality"}},
|
|
|
|
|
{"CLFR", {A::SUMMARY_WELL_COMPLETION, "Liquid Flow Rate"}},
|
|
|
|
|
{"CLPT", {A::SUMMARY_WELL_COMPLETION, "Liquid Production Total"}},
|
|
|
|
|
{"CVFR", {A::SUMMARY_WELL_COMPLETION, "Reservoir"}},
|
|
|
|
|
{"CVPR", {A::SUMMARY_WELL_COMPLETION, "Res Volume Production Rate"}},
|
|
|
|
|
{"CVPT", {A::SUMMARY_WELL_COMPLETION, "Res Volume Production Total"}},
|
|
|
|
|
{"CVIR", {A::SUMMARY_WELL_COMPLETION, "Res Volume Injection Rate"}},
|
|
|
|
|
{"CVIT", {A::SUMMARY_WELL_COMPLETION, "Res Volume Injection Total"}},
|
|
|
|
|
{"CWCT", {A::SUMMARY_WELL_COMPLETION, "Water Cut"}},
|
|
|
|
|
{"CGOR", {A::SUMMARY_WELL_COMPLETION, "Gas-Oil Ratio"}},
|
|
|
|
|
{"COGR", {A::SUMMARY_WELL_COMPLETION, "Oil-Gas Ratio"}},
|
|
|
|
|
{"CWGR", {A::SUMMARY_WELL_COMPLETION, "Water-Gas Ratio"}},
|
|
|
|
|
{"CGLR", {A::SUMMARY_WELL_COMPLETION, "Gas-Liquid Ratio"}},
|
|
|
|
|
{"CPR", {A::SUMMARY_WELL_COMPLETION, "Connection Pressure"}},
|
|
|
|
|
{"CPI", {A::SUMMARY_WELL_COMPLETION, "Productivity Index of well<6C>s preferred phase"}},
|
|
|
|
|
{"CTFAC", {A::SUMMARY_WELL_COMPLETION, "Connection Transmissibility Factor"}},
|
|
|
|
|
{"CDBF", {A::SUMMARY_WELL_COMPLETION, "Blocking factor for generalized pseudo-pressure method"}},
|
|
|
|
|
{"CGPPTN", {A::SUMMARY_WELL_COMPLETION, "Generalized pseudo-pressure table update counter"}},
|
|
|
|
|
{"CGPPTS", {A::SUMMARY_WELL_COMPLETION, "Generalized pseudo-pressure table update status"}},
|
|
|
|
|
{"CDSM", {A::SUMMARY_WELL_COMPLETION, "Current mass of scale deposited"}},
|
|
|
|
|
{"CDSML", {A::SUMMARY_WELL_COMPLETION, "Current mass of scale deposited per unit perforation length"}},
|
|
|
|
|
{"CDSF", {A::SUMMARY_WELL_COMPLETION, "PI multiplicative factor due to scale damage"}},
|
|
|
|
|
{"CAMF", {A::SUMMARY_WELL_COMPLETION, "Component aqueous mole fraction, from producing completions"}},
|
|
|
|
|
{"CZMF", {A::SUMMARY_WELL_COMPLETION, "Total Mole Fraction"}},
|
|
|
|
|
{"CKFR", {A::SUMMARY_WELL_COMPLETION, "Hydrocarbon Component"}},
|
|
|
|
|
{"CKFT", {A::SUMMARY_WELL_COMPLETION, "Hydrocarbon Component"}},
|
|
|
|
|
{"CDFAC", {A::SUMMARY_WELL_COMPLETION, "D-factor for flow dependent skin factor"}},
|
|
|
|
|
{"CTFR", {A::SUMMARY_WELL_COMPLETION, "Tracer Flow Rate"}},
|
|
|
|
|
{"CTPR", {A::SUMMARY_WELL_COMPLETION, "Tracer Production Rate"}},
|
|
|
|
|
{"CTPT", {A::SUMMARY_WELL_COMPLETION, "Tracer Production Total"}},
|
|
|
|
|
{"CTPC", {A::SUMMARY_WELL_COMPLETION, "Tracer Production Concentration"}},
|
|
|
|
|
{"CTIR", {A::SUMMARY_WELL_COMPLETION, "Tracer Injection Rate"}},
|
|
|
|
|
{"CTIT", {A::SUMMARY_WELL_COMPLETION, "Tracer Injection Total"}},
|
|
|
|
|
{"CTIC", {A::SUMMARY_WELL_COMPLETION, "Tracer Injection Concentration"}},
|
|
|
|
|
{"CAPI", {A::SUMMARY_WELL_COMPLETION, "Oil API"}},
|
|
|
|
|
{"CSFR", {A::SUMMARY_WELL_COMPLETION, "Salt Flow Rate"}},
|
|
|
|
|
{"CSPR", {A::SUMMARY_WELL_COMPLETION, "Salt Production Rate"}},
|
|
|
|
|
{"CSPT", {A::SUMMARY_WELL_COMPLETION, "Salt Production Total"}},
|
|
|
|
|
{"CSIR", {A::SUMMARY_WELL_COMPLETION, "Salt Injection Rate"}},
|
|
|
|
|
{"CSIT", {A::SUMMARY_WELL_COMPLETION, "Salt Injection Total"}},
|
|
|
|
|
{"CSPC", {A::SUMMARY_WELL_COMPLETION, "Salt Production Concentration"}},
|
|
|
|
|
{"CSIC", {A::SUMMARY_WELL_COMPLETION, "Salt Injection Concentration"}},
|
|
|
|
|
{"CTFRANI", {A::SUMMARY_WELL_COMPLETION, "Anion Flow Rate"}},
|
|
|
|
|
{"CTPTANI", {A::SUMMARY_WELL_COMPLETION, "Anion Production Total"}},
|
|
|
|
|
{"CTITANI", {A::SUMMARY_WELL_COMPLETION, "Anion Injection Total"}},
|
|
|
|
|
{"CTFRCAT", {A::SUMMARY_WELL_COMPLETION, "Cation Flow Rate"}},
|
|
|
|
|
{"CTPTCAT", {A::SUMMARY_WELL_COMPLETION, "Cation Production Total"}},
|
|
|
|
|
{"CTITCAT", {A::SUMMARY_WELL_COMPLETION, "Cation Injection Total"}},
|
|
|
|
|
{"CTFR", {A::SUMMARY_WELL_COMPLETION, "Tracer Flow Rate"}},
|
|
|
|
|
{"CTPR", {A::SUMMARY_WELL_COMPLETION, "Tracer Production Rate"}},
|
|
|
|
|
{"CTPT", {A::SUMMARY_WELL_COMPLETION, "Tracer Production Total"}},
|
|
|
|
|
{"CTPC", {A::SUMMARY_WELL_COMPLETION, "Tracer Production Concentration"}},
|
|
|
|
|
{"CTIR", {A::SUMMARY_WELL_COMPLETION, "Tracer Injection Rate"}},
|
|
|
|
|
{"CTIT", {A::SUMMARY_WELL_COMPLETION, "Tracer Injection Total"}},
|
|
|
|
|
{"CTIC", {A::SUMMARY_WELL_COMPLETION, "Tracer Injection Concentration"}},
|
|
|
|
|
{"CTIRF", {A::SUMMARY_WELL_COMPLETION, "Tracer Injection Rate"}},
|
|
|
|
|
{"CTIRS", {A::SUMMARY_WELL_COMPLETION, "Tracer Injection Rate"}},
|
|
|
|
|
{"CTPRF", {A::SUMMARY_WELL_COMPLETION, "Tracer Production Rate"}},
|
|
|
|
|
{"CTPRS", {A::SUMMARY_WELL_COMPLETION, "Tracer Production Rate"}},
|
|
|
|
|
{"CTITF", {A::SUMMARY_WELL_COMPLETION, "Tracer Injection Total"}},
|
|
|
|
|
{"CTITS", {A::SUMMARY_WELL_COMPLETION, "Tracer Injection Total"}},
|
|
|
|
|
{"CTPTF", {A::SUMMARY_WELL_COMPLETION, "Tracer Production Total"}},
|
|
|
|
|
{"CTPTS", {A::SUMMARY_WELL_COMPLETION, "Tracer Production Total"}},
|
|
|
|
|
{"CTICF", {A::SUMMARY_WELL_COMPLETION, "Tracer Injection Concentration"}},
|
|
|
|
|
{"CTICS", {A::SUMMARY_WELL_COMPLETION, "Tracer Injection Concentration"}},
|
|
|
|
|
{"CTPCF", {A::SUMMARY_WELL_COMPLETION, "Tracer Production"}},
|
|
|
|
|
{"CTPCS", {A::SUMMARY_WELL_COMPLETION, "Tracer Production"}},
|
|
|
|
|
{"CTFRFOA", {A::SUMMARY_WELL_COMPLETION, "Flow Rate"}},
|
|
|
|
|
{"CTPTFOA", {A::SUMMARY_WELL_COMPLETION, "Production Total"}},
|
|
|
|
|
{"CTITFOA", {A::SUMMARY_WELL_COMPLETION, "Injection Total"}},
|
|
|
|
|
{"CRREXCH", {A::SUMMARY_WELL_COMPLETION, "Exchange flux at current time"}},
|
|
|
|
|
{"CRRPROT", {A::SUMMARY_WELL_COMPLETION, "Connection cumulative water production"}},
|
|
|
|
|
{"CRRINJT", {A::SUMMARY_WELL_COMPLETION, "Connection cumulative water injection"}},
|
|
|
|
|
{"CCFR", {A::SUMMARY_WELL_COMPLETION, "Polymer Flow Rate"}},
|
|
|
|
|
{"CCPR", {A::SUMMARY_WELL_COMPLETION, "Polymer Production Rate"}},
|
|
|
|
|
{"CCPC", {A::SUMMARY_WELL_COMPLETION, "Polymer Production Concentration"}},
|
|
|
|
|
{"CCPT", {A::SUMMARY_WELL_COMPLETION, "Polymer Production Total"}},
|
|
|
|
|
{"CCIR", {A::SUMMARY_WELL_COMPLETION, "Polymer Injection Rate"}},
|
|
|
|
|
{"CCIC", {A::SUMMARY_WELL_COMPLETION, "Polymer Injection Concentration"}},
|
|
|
|
|
{"CCIT", {A::SUMMARY_WELL_COMPLETION, "Polymer Injection Total"}},
|
|
|
|
|
{"CSFR", {A::SUMMARY_WELL_COMPLETION, "Salt Flow Rate"}},
|
|
|
|
|
{"CSPR", {A::SUMMARY_WELL_COMPLETION, "Salt Production Rate"}},
|
|
|
|
|
{"CSPT", {A::SUMMARY_WELL_COMPLETION, "Salt Production Total"}},
|
|
|
|
|
{"CSIR", {A::SUMMARY_WELL_COMPLETION, "Salt Injection Rate"}},
|
|
|
|
|
{"CSIT", {A::SUMMARY_WELL_COMPLETION, "Salt Injection Total"}},
|
|
|
|
|
{"CNFR", {A::SUMMARY_WELL_COMPLETION, "Solvent Flow Rate"}},
|
|
|
|
|
{"CNPT", {A::SUMMARY_WELL_COMPLETION, "Solvent Production Total"}},
|
|
|
|
|
{"CNIT", {A::SUMMARY_WELL_COMPLETION, "Solvent Injection Total"}},
|
|
|
|
|
{"CTFRSUR", {A::SUMMARY_WELL_COMPLETION, "Flow Rate"}},
|
|
|
|
|
{"CTPTSUR", {A::SUMMARY_WELL_COMPLETION, "Production Total"}},
|
|
|
|
|
{"CTITSUR", {A::SUMMARY_WELL_COMPLETION, "Injection Total"}},
|
|
|
|
|
{"CTFRALK", {A::SUMMARY_WELL_COMPLETION, "Flow Rate"}},
|
|
|
|
|
{"CTPTALK", {A::SUMMARY_WELL_COMPLETION, "Production Total"}},
|
|
|
|
|
{"CTITALK", {A::SUMMARY_WELL_COMPLETION, "Injection Total"}},
|
|
|
|
|
{"COFRU",
|
|
|
|
|
{A::SUMMARY_WELL_COMPLETION, "Sum of connection oil flow rates upstream of, and including, this connection"}},
|
|
|
|
|
{"CWFRU",
|
|
|
|
|
{A::SUMMARY_WELL_COMPLETION, "Sum of connection water flow rates upstream of, and including, this connection"}},
|
|
|
|
|
{"CGFRU",
|
|
|
|
|
{A::SUMMARY_WELL_COMPLETION, "Sum of connection gas flow rates upstream of, and including, this connection"}},
|
|
|
|
|
{"LCOFRU", {A::SUMMARY_WELL_COMPLETION, "As COFRU but for local grids"}},
|
|
|
|
|
{"LCWFRU", {A::SUMMARY_WELL_COMPLETION, "As CWFRU but for local grids"}},
|
|
|
|
|
{"LCGFRU", {A::SUMMARY_WELL_COMPLETION, "As CGFRU but for local grids"}},
|
|
|
|
|
{"CU", {A::SUMMARY_WELL_COMPLETION, "User-defined connection quantity"}},
|
2017-10-16 08:13:31 -05:00
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
{"COFRL", {A::SUMMARY_WELL_COMPLETION, "Oil Flow Rate"}},
|
|
|
|
|
{"WOFRL", {A::SUMMARY_WELL_COMPLETION, "Oil Flow Rate"}},
|
|
|
|
|
{"COPRL", {A::SUMMARY_WELL_COMPLETION, "Oil Flow Rate"}},
|
|
|
|
|
{"WOPRL", {A::SUMMARY_WELL_COMPLETION, "Oil Flow Rate"}},
|
|
|
|
|
{"COPTL", {A::SUMMARY_WELL_COMPLETION, "Oil Production Total"}},
|
|
|
|
|
{"WOPTL", {A::SUMMARY_WELL_COMPLETION, "Oil Production Total"}},
|
|
|
|
|
{"COITL", {A::SUMMARY_WELL_COMPLETION, "Oil Injection Total"}},
|
|
|
|
|
{"WOITL", {A::SUMMARY_WELL_COMPLETION, "Oil Injection Total"}},
|
|
|
|
|
{"CWFRL", {A::SUMMARY_WELL_COMPLETION, "Water Flow Rate"}},
|
|
|
|
|
{"WWFRL", {A::SUMMARY_WELL_COMPLETION, "Water Flow Rate"}},
|
|
|
|
|
{"CWPRL", {A::SUMMARY_WELL_COMPLETION, "Water Flow Rate"}},
|
|
|
|
|
{"WWPRL", {A::SUMMARY_WELL_COMPLETION, "Water Flow Rate"}},
|
|
|
|
|
{"CWPTL", {A::SUMMARY_WELL_COMPLETION, "Water Production Total"}},
|
|
|
|
|
{"WWPTL", {A::SUMMARY_WELL_COMPLETION, "Water Production Total"}},
|
|
|
|
|
{"CWIRL", {A::SUMMARY_WELL_COMPLETION, "Water Injection Rate"}},
|
|
|
|
|
{"WWIRL", {A::SUMMARY_WELL_COMPLETION, "Water Injection Rate"}},
|
|
|
|
|
{"CWITL", {A::SUMMARY_WELL_COMPLETION, "Water Injection Total"}},
|
|
|
|
|
{"WWITL", {A::SUMMARY_WELL_COMPLETION, "Water Injection Total"}},
|
|
|
|
|
{"CGFRL", {A::SUMMARY_WELL_COMPLETION, "Gas Flow Rate"}},
|
|
|
|
|
{"WGFRL", {A::SUMMARY_WELL_COMPLETION, "Gas Flow Rate"}},
|
|
|
|
|
{"CGPRL", {A::SUMMARY_WELL_COMPLETION, "Gas Flow Rate"}},
|
|
|
|
|
{"WGPRL", {A::SUMMARY_WELL_COMPLETION, "Gas Flow Rate"}},
|
|
|
|
|
{"CGPTL", {A::SUMMARY_WELL_COMPLETION, "Gas Production Total"}},
|
|
|
|
|
{"WGPTL", {A::SUMMARY_WELL_COMPLETION, "Gas Production Total"}},
|
|
|
|
|
{"CGIRL", {A::SUMMARY_WELL_COMPLETION, "Gas Injection Rate"}},
|
|
|
|
|
{"WGIRL", {A::SUMMARY_WELL_COMPLETION, "Gas Injection Rate"}},
|
|
|
|
|
{"CGITL", {A::SUMMARY_WELL_COMPLETION, "Gas Injection Total"}},
|
|
|
|
|
{"WGITL", {A::SUMMARY_WELL_COMPLETION, "Gas Injection Total"}},
|
|
|
|
|
{"CLFRL", {A::SUMMARY_WELL_COMPLETION, "Liquid Flow Rate"}},
|
|
|
|
|
{"WLFRL", {A::SUMMARY_WELL_COMPLETION, "Liquid Flow Rate"}},
|
|
|
|
|
{"CLPTL", {A::SUMMARY_WELL_COMPLETION, "Liquid Production Total"}},
|
|
|
|
|
{"WLPTL", {A::SUMMARY_WELL_COMPLETION, "Liquid Production Total"}},
|
|
|
|
|
{"CVFRL", {A::SUMMARY_WELL_COMPLETION, "Reservoir"}},
|
|
|
|
|
{"WVFRL", {A::SUMMARY_WELL_COMPLETION, "Res Volume Flow Rate"}},
|
|
|
|
|
{"CVPRL", {A::SUMMARY_WELL_COMPLETION, "Res Volume Production Flow Rate"}},
|
|
|
|
|
{"WVPRL", {A::SUMMARY_WELL_COMPLETION, "Res Volume Production Flow Rate"}},
|
|
|
|
|
{"CVIRL", {A::SUMMARY_WELL_COMPLETION, "Res Volume Injection Flow Rate"}},
|
|
|
|
|
{"WVIRL", {A::SUMMARY_WELL_COMPLETION, "Res Volume Injection Flow Rate"}},
|
|
|
|
|
{"CVPTL", {A::SUMMARY_WELL_COMPLETION, "Res Volume Production Total"}},
|
|
|
|
|
{"WVPTL", {A::SUMMARY_WELL_COMPLETION, "Res Volume Production Total"}},
|
|
|
|
|
{"CVITL", {A::SUMMARY_WELL_COMPLETION, "Res Volume Injection Total"}},
|
|
|
|
|
{"WVITL", {A::SUMMARY_WELL_COMPLETION, "Res Volume Injection Total"}},
|
|
|
|
|
{"CWCTL", {A::SUMMARY_WELL_COMPLETION, "Water Cut"}},
|
|
|
|
|
{"WWCTL", {A::SUMMARY_WELL_COMPLETION, "Water Cut"}},
|
|
|
|
|
{"CGORL", {A::SUMMARY_WELL_COMPLETION, "Gas-Oil Ratio"}},
|
|
|
|
|
{"WGORL", {A::SUMMARY_WELL_COMPLETION, "Gas-Oil Ratio"}},
|
|
|
|
|
{"COGRL", {A::SUMMARY_WELL_COMPLETION, "Oil-Gas Ratio"}},
|
|
|
|
|
{"WOGRL", {A::SUMMARY_WELL_COMPLETION, "Oil-Gas Ratio"}},
|
|
|
|
|
{"CWGRL", {A::SUMMARY_WELL_COMPLETION, "Water-Gas Ratio"}},
|
|
|
|
|
{"WWGRL", {A::SUMMARY_WELL_COMPLETION, "Water-Gas Ratio"}},
|
|
|
|
|
{"CGLRL", {A::SUMMARY_WELL_COMPLETION, "Gas-Liquid Ratio"}},
|
|
|
|
|
{"WGLRL", {A::SUMMARY_WELL_COMPLETION, "Gas-Liquid Ratio"}},
|
|
|
|
|
{"CPRL", {A::SUMMARY_WELL_COMPLETION, "Average Connection Pressure in completion"}},
|
|
|
|
|
{"CKFRL", {A::SUMMARY_WELL_COMPLETION, "Hydrocarbon Component"}},
|
|
|
|
|
{"CKFTL", {A::SUMMARY_WELL_COMPLETION, "Hydrocarbon Component"}},
|
2017-10-16 08:13:31 -05:00
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
{"RPR", {A::SUMMARY_REGION, "Pressure average value"}},
|
|
|
|
|
{"RPRH", {A::SUMMARY_REGION, "Pressure average value"}},
|
|
|
|
|
{"RPRP", {A::SUMMARY_REGION, "Pressure average value"}},
|
|
|
|
|
{"RPRGZ", {A::SUMMARY_REGION, "P/Z"}},
|
|
|
|
|
{"RRS", {A::SUMMARY_REGION, "Gas-oil ratio"}},
|
|
|
|
|
{"RRV", {A::SUMMARY_REGION, "Oil-gas ratio"}},
|
|
|
|
|
{"RPPC", {A::SUMMARY_REGION, "Initial Contact Corrected Potential"}},
|
|
|
|
|
{"RRPV", {A::SUMMARY_REGION, "Pore Volume at Reservoir conditions"}},
|
|
|
|
|
{"ROPV", {A::SUMMARY_REGION, "Pore Volume containing Oil"}},
|
|
|
|
|
{"RWPV", {A::SUMMARY_REGION, "Pore Volume containing Water"}},
|
|
|
|
|
{"RGPV", {A::SUMMARY_REGION, "Pore Volume containing Gas"}},
|
|
|
|
|
{"RHPV", {A::SUMMARY_REGION, "Pore Volume containing Hydrocarbon"}},
|
|
|
|
|
{"RRTM", {A::SUMMARY_REGION, "Transmissibility Multiplier associated with rock compaction"}},
|
|
|
|
|
{"ROE", {A::SUMMARY_REGION, "(OIP(initial - OIP(now) / OIP(initial)"}},
|
|
|
|
|
{"ROEW", {A::SUMMARY_REGION, "Oil Production from Wells / OIP(initial)"}},
|
|
|
|
|
{"ROEIW", {A::SUMMARY_REGION, "(OIP(initial - OIP(now) / Initial Mobile Oil with respect to Water"}},
|
|
|
|
|
{"ROEWW", {A::SUMMARY_REGION, "Oil Production from Wells / Initial Mobile Oil with respect to Water"}},
|
|
|
|
|
{"ROEIG", {A::SUMMARY_REGION, "(OIP(initial - OIP(now) / Initial Mobile Oil with respect to Gas"}},
|
|
|
|
|
{"ROEWG", {A::SUMMARY_REGION, "Oil Production from Wells / Initial Mobile Oil with respect to Gas"}},
|
|
|
|
|
{"RORMR", {A::SUMMARY_REGION, "Total stock tank oil produced by rock compaction"}},
|
|
|
|
|
{"RORMW", {A::SUMMARY_REGION, "Total stock tank oil produced by water influx"}},
|
|
|
|
|
{"RORMG", {A::SUMMARY_REGION, "Total stock tank oil produced by gas influx"}},
|
|
|
|
|
{"RORME", {A::SUMMARY_REGION, "Total stock tank oil produced by oil expansion"}},
|
|
|
|
|
{"RORMS", {A::SUMMARY_REGION, "Total stock tank oil produced by solution gas"}},
|
|
|
|
|
{"RORMF", {A::SUMMARY_REGION, "Total stock tank oil produced by free gas influx"}},
|
|
|
|
|
{"RORMX", {A::SUMMARY_REGION, "Total stock tank oil produced by 'traced' water influx"}},
|
|
|
|
|
{"RORMY", {A::SUMMARY_REGION, "Total stock tank oil produced by other water influx"}},
|
|
|
|
|
{"RORFR", {A::SUMMARY_REGION, "Fraction of total oil produced by rock compaction"}},
|
|
|
|
|
{"RORFW", {A::SUMMARY_REGION, "Fraction of total oil produced by water influx"}},
|
|
|
|
|
{"RORFG", {A::SUMMARY_REGION, "Fraction of total oil produced by gas influx"}},
|
|
|
|
|
{"RORFE", {A::SUMMARY_REGION, "Fraction of total oil produced by oil expansion"}},
|
|
|
|
|
{"RORFS", {A::SUMMARY_REGION, "Fraction of total oil produced by solution gas"}},
|
|
|
|
|
{"RORFF", {A::SUMMARY_REGION, "Fraction of total oil produced by free gas influx"}},
|
|
|
|
|
{"RORFX", {A::SUMMARY_REGION, "Fraction of total oil produced by 'traced' water influx"}},
|
|
|
|
|
{"RORFY", {A::SUMMARY_REGION, "Fraction of total oil produced by other water influx"}},
|
|
|
|
|
{"RTIPT", {A::SUMMARY_REGION, "Tracer In Place"}},
|
|
|
|
|
{"RTIPF", {A::SUMMARY_REGION, "Tracer In Place"}},
|
|
|
|
|
{"RTIPS", {A::SUMMARY_REGION, "Tracer In Place"}},
|
|
|
|
|
{"RAPI", {A::SUMMARY_REGION, "Oil API"}},
|
|
|
|
|
{"RSIP", {A::SUMMARY_REGION, "Salt In Place"}},
|
|
|
|
|
{"RTIPTHEA", {A::SUMMARY_REGION, "Difference in Energy in place between current and initial time"}},
|
|
|
|
|
{"RTIPT", {A::SUMMARY_REGION, "Tracer In Place"}},
|
|
|
|
|
{"RTIPF", {A::SUMMARY_REGION, "Tracer In Place"}},
|
|
|
|
|
{"RTIPS", {A::SUMMARY_REGION, "Tracer In Place"}},
|
|
|
|
|
{"RTIP#", {A::SUMMARY_REGION, "Tracer In Place in phase # (1,2,3,...)"}},
|
|
|
|
|
{"RTADS", {A::SUMMARY_REGION, "Tracer Adsorption total"}},
|
|
|
|
|
{"RTDCY", {A::SUMMARY_REGION, "Decayed tracer"}},
|
|
|
|
|
{"RCGC", {A::SUMMARY_REGION, "Bulk Coal Gas Concentration"}},
|
|
|
|
|
{"RCSC", {A::SUMMARY_REGION, "Bulk Coal Solvent Concentration"}},
|
|
|
|
|
{"RTIPTFOA", {A::SUMMARY_REGION, "In Solution"}},
|
|
|
|
|
{"RTADSFOA", {A::SUMMARY_REGION, "Adsorption total"}},
|
|
|
|
|
{"RTDCYFOA", {A::SUMMARY_REGION, "Decayed tracer"}},
|
|
|
|
|
{"RTMOBFOA", {A::SUMMARY_REGION, "Gas mobility factor"}},
|
|
|
|
|
{"RCIP", {A::SUMMARY_REGION, "Polymer In Solution"}},
|
|
|
|
|
{"RCAD", {A::SUMMARY_REGION, "Polymer Adsorption total"}},
|
|
|
|
|
{"RSIP", {A::SUMMARY_REGION, "Salt In Place"}},
|
|
|
|
|
{"RNIP", {A::SUMMARY_REGION, "Solvent In Place"}},
|
|
|
|
|
{"RTIPTSUR", {A::SUMMARY_REGION, "In Solution"}},
|
|
|
|
|
{"RTADSUR", {A::SUMMARY_REGION, "Adsorption total"}},
|
|
|
|
|
{"RU", {A::SUMMARY_REGION, "User-defined region quantity"}},
|
2017-10-16 08:13:31 -05:00
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
{"ROFR", {A::SUMMARY_REGION_2_REGION, "Inter-region oil flow rate"}},
|
|
|
|
|
{"ROFR+", {A::SUMMARY_REGION_2_REGION, "Inter-region oil flow rate"}},
|
|
|
|
|
{"ROFR-", {A::SUMMARY_REGION_2_REGION, "Inter-region oil flow rate"}},
|
|
|
|
|
{"ROFT", {A::SUMMARY_REGION_2_REGION, "Inter-region oil flow total"}},
|
|
|
|
|
{"ROFT+", {A::SUMMARY_REGION_2_REGION, "Inter-region oil flow total"}},
|
|
|
|
|
{"ROFT-", {A::SUMMARY_REGION_2_REGION, "Inter-region oil flow total"}},
|
|
|
|
|
{"ROFTL", {A::SUMMARY_REGION_2_REGION, "Inter-region oil flow total"}},
|
|
|
|
|
{"ROFTG", {A::SUMMARY_REGION_2_REGION, "Inter-region oil flow total"}},
|
|
|
|
|
{"RGFR", {A::SUMMARY_REGION_2_REGION, "Inter-region gas flow rate"}},
|
|
|
|
|
{"RGFR+", {A::SUMMARY_REGION_2_REGION, "Inter-region gas flow rate"}},
|
|
|
|
|
{"RGFR-", {A::SUMMARY_REGION_2_REGION, "Inter-region gas flow rate"}},
|
|
|
|
|
{"RGFT", {A::SUMMARY_REGION_2_REGION, "Inter-region gas flow total)"}},
|
|
|
|
|
{"RGFT+", {A::SUMMARY_REGION_2_REGION, "Inter-region gas flow total"}},
|
|
|
|
|
{"RGFT-", {A::SUMMARY_REGION_2_REGION, "Inter-region gas flow total"}},
|
|
|
|
|
{"RGFTL", {A::SUMMARY_REGION_2_REGION, "Inter-region gas flow total"}},
|
|
|
|
|
{"RGFTG", {A::SUMMARY_REGION_2_REGION, "Inter-region gas flow total"}},
|
|
|
|
|
{"RWFR", {A::SUMMARY_REGION_2_REGION, "Inter-region water flow rate"}},
|
|
|
|
|
{"RWFR+", {A::SUMMARY_REGION_2_REGION, "Inter-region water flow rate"}},
|
|
|
|
|
{"RWFR-", {A::SUMMARY_REGION_2_REGION, "Inter-region water flow rate"}},
|
|
|
|
|
{"RWFT", {A::SUMMARY_REGION_2_REGION, "Inter-region water flow total"}},
|
|
|
|
|
{"RTFTF", {A::SUMMARY_REGION_2_REGION, "Tracer inter-region Flow Total"}},
|
|
|
|
|
{"RTFTS", {A::SUMMARY_REGION_2_REGION, "Tracer inter-region Flow Total"}},
|
|
|
|
|
{"RTFTT", {A::SUMMARY_REGION_2_REGION, "Tracer inter-region Flow Total"}},
|
|
|
|
|
{"RSFT", {A::SUMMARY_REGION_2_REGION, "Salt inter-region Flow Total"}},
|
|
|
|
|
{"RTFTT", {A::SUMMARY_REGION_2_REGION, "Tracer inter-region Flow"}},
|
|
|
|
|
{"RTFTF", {A::SUMMARY_REGION_2_REGION, "Tracer inter-region Flow"}},
|
|
|
|
|
{"RTFTS", {A::SUMMARY_REGION_2_REGION, "Tracer inter-region Flow"}},
|
|
|
|
|
{"RTFT#", {A::SUMMARY_REGION_2_REGION, "Tracer inter-region Flow in phase # (1,2,3,...)"}},
|
|
|
|
|
{"RTFTTFOA", {A::SUMMARY_REGION_2_REGION, "Inter-region Flow Total"}},
|
|
|
|
|
{"RCFT", {A::SUMMARY_REGION_2_REGION, "Polymer inter-region Flow Total"}},
|
|
|
|
|
{"RSFT", {A::SUMMARY_REGION_2_REGION, "Salt inter-region Flow Total"}},
|
|
|
|
|
{"RNFT", {A::SUMMARY_REGION_2_REGION, "Solvent inter-region Flow"}},
|
|
|
|
|
{"RTFTTSUR", {A::SUMMARY_REGION_2_REGION, "Inter-region Flow Total"}},
|
2017-10-16 08:13:31 -05:00
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
{"BPR", {A::SUMMARY_BLOCK, "Oil phase Pressure"}},
|
|
|
|
|
{"BPRESSUR", {A::SUMMARY_BLOCK, "Oil phase Pressure"}},
|
|
|
|
|
{"BWPR", {A::SUMMARY_BLOCK, "Water phase Pressure"}},
|
|
|
|
|
{"BGPR", {A::SUMMARY_BLOCK, "Gas phase Pressure"}},
|
|
|
|
|
{"BRS", {A::SUMMARY_BLOCK, "Gas-oil ratio"}},
|
|
|
|
|
{"BRV", {A::SUMMARY_BLOCK, "Oil-gas ratio"}},
|
|
|
|
|
{"BPBUB", {A::SUMMARY_BLOCK, "Bubble point pressure"}},
|
|
|
|
|
{"BPDEW", {A::SUMMARY_BLOCK, "Dew point pressure"}},
|
|
|
|
|
{"BRSSAT", {A::SUMMARY_BLOCK, "Saturated gas-oil ratio"}},
|
|
|
|
|
{"BRVSAT", {A::SUMMARY_BLOCK, "Saturated oil-gas ratio"}},
|
|
|
|
|
{"BSTATE", {A::SUMMARY_BLOCK, "Gas-oil state indicator"}},
|
|
|
|
|
{"BPPC", {A::SUMMARY_BLOCK, "Initial Contact Corrected Potential"}},
|
|
|
|
|
{"BOKR", {A::SUMMARY_BLOCK, "Oil relative permeability"}},
|
|
|
|
|
{"BWKR", {A::SUMMARY_BLOCK, "Water relative permeability"}},
|
|
|
|
|
{"BGKR", {A::SUMMARY_BLOCK, "Gas relative permeability"}},
|
|
|
|
|
{"BKRO", {A::SUMMARY_BLOCK, "Oil relative permeability"}},
|
|
|
|
|
{"BKROG", {A::SUMMARY_BLOCK, "Two-phase oil relative permeability to gas"}},
|
|
|
|
|
{"BKROW", {A::SUMMARY_BLOCK, "Two-phase oil relative permeability to water"}},
|
|
|
|
|
{"BKRG", {A::SUMMARY_BLOCK, "Gas relative permeability"}},
|
|
|
|
|
{"BKRGO", {A::SUMMARY_BLOCK, "Two-phase gas relative permeability to oil "}},
|
|
|
|
|
{"BKRGW", {A::SUMMARY_BLOCK, "Two-phase gas relative permeability to water"}},
|
|
|
|
|
{"BKRW", {A::SUMMARY_BLOCK, "Water relative permeability"}},
|
|
|
|
|
{"BKRWG", {A::SUMMARY_BLOCK, "Two-phase water relative permeability to gas"}},
|
|
|
|
|
{"BKRWO", {A::SUMMARY_BLOCK, "Two-phase water relative permeability to oil"}},
|
|
|
|
|
{"BRK", {A::SUMMARY_BLOCK, "Water relative permeability reduction factor due to polymer"}},
|
|
|
|
|
{"BEWKR", {A::SUMMARY_BLOCK, "Water effective relative permeability due to polymer"}},
|
|
|
|
|
{"BWPC", {A::SUMMARY_BLOCK, "Water-Oil capillary pressure"}},
|
|
|
|
|
{"BGPC", {A::SUMMARY_BLOCK, "Gas-Oil capillary pressure"}},
|
|
|
|
|
{"BPCO", {A::SUMMARY_BLOCK, "Oil Capillary Pressures"}},
|
|
|
|
|
{"BPCG", {A::SUMMARY_BLOCK, "Gas Capillary Pressures"}},
|
|
|
|
|
{"BPCW", {A::SUMMARY_BLOCK, "Water Capillary Pressures"}},
|
|
|
|
|
{"BGTRP", {A::SUMMARY_BLOCK, "Trapped gas saturation"}},
|
|
|
|
|
{"BGTPD", {A::SUMMARY_BLOCK, "Dynamic trapped gas saturation"}},
|
|
|
|
|
{"BGSHY",
|
|
|
|
|
{A::SUMMARY_BLOCK, "Departure saturation from drainage to imbibition for gas capillary pressure hysteresis"}},
|
|
|
|
|
{"BGSTRP", {A::SUMMARY_BLOCK, "Trapped gas critical saturation for gas capillary pressure hysteresis"}},
|
|
|
|
|
{"BWSHY",
|
|
|
|
|
{A::SUMMARY_BLOCK, "Departure saturation from drainage to imbibition for water capillary pressure hysteresis"}},
|
|
|
|
|
{"BWSMA", {A::SUMMARY_BLOCK, "Maximum wetting saturation for water capillary pressure hysteresis"}},
|
|
|
|
|
{"BMLSC", {A::SUMMARY_BLOCK, "Hydrocarbon molar density"}},
|
|
|
|
|
{"BMLST", {A::SUMMARY_BLOCK, "Total hydrocarbon molar density"}},
|
|
|
|
|
{"BMWAT", {A::SUMMARY_BLOCK, "Water molar density"}},
|
|
|
|
|
{"BROMLS", {A::SUMMARY_BLOCK, "Residual oil moles/ reservoir volume"}},
|
|
|
|
|
{"BJV", {A::SUMMARY_BLOCK, "In"}},
|
|
|
|
|
{"BVMF", {A::SUMMARY_BLOCK, "Vapor mole fraction"}},
|
|
|
|
|
{"BPSAT", {A::SUMMARY_BLOCK, "Saturation Pressures"}},
|
|
|
|
|
{"BAMF", {A::SUMMARY_BLOCK, "Component aqueous mole fraction"}},
|
|
|
|
|
{"BXMF", {A::SUMMARY_BLOCK, "Liquid hydrocarbon component mole fraction"}},
|
|
|
|
|
{"BYMF", {A::SUMMARY_BLOCK, "Vapor hydrocarbon component mole fraction / vapor steam"}},
|
|
|
|
|
{"BSMF", {A::SUMMARY_BLOCK, "CO2STORE with SOLID option only Solid hydrocarbon component mole fraction"}},
|
|
|
|
|
{"BSTEN", {A::SUMMARY_BLOCK, "Surface Tension"}},
|
|
|
|
|
{"BFMISC", {A::SUMMARY_BLOCK, "Miscibility Factor"}},
|
|
|
|
|
{"BREAC", {A::SUMMARY_BLOCK, "Reaction rate. The reaction number is given as a component index"}},
|
|
|
|
|
{"BHD", {A::SUMMARY_BLOCK, "Hydraulic head"}},
|
|
|
|
|
{"BHDF", {A::SUMMARY_BLOCK, "Hydraulic head at fresh water conditions"}},
|
|
|
|
|
{"BPR_X", {A::SUMMARY_BLOCK, "Pressure interpolated at a defined coordinate"}},
|
|
|
|
|
{"BHD_X", {A::SUMMARY_BLOCK, "Hydraulic head interpolated at a defined coordinate"}},
|
|
|
|
|
{"BHDF_X", {A::SUMMARY_BLOCK, "Hydraulic head at fresh water conditions interpolated at a defined coordinate"}},
|
|
|
|
|
{"BSCN_X", {A::SUMMARY_BLOCK, "Brine concentration interpolated at a defined coordinate"}},
|
|
|
|
|
{"BCTRA_X", {A::SUMMARY_BLOCK, "Tracer concentration interpolated at a defined coordinate"}},
|
|
|
|
|
{"LBPR_X", {A::SUMMARY_BLOCK, "Pressure interpolated at a defined coordinate within a local grid"}},
|
|
|
|
|
{"LBHD_X", {A::SUMMARY_BLOCK, "Hydraulic head interpolated at a defined coordinate within a local grid"}},
|
|
|
|
|
{"LBHDF_X",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Hydraulic head at freshwater conditions interpolated at a defined coordinate within a local grid"}},
|
|
|
|
|
{"LBSCN_X", {A::SUMMARY_BLOCK, "Brine concentration interpolated at a defined coordinate within a local grid"}},
|
|
|
|
|
{"LBCTRA_X", {A::SUMMARY_BLOCK, "Tracer concentration interpolated at a defined coordinate within a local grid"}},
|
|
|
|
|
{"BOKRX", {A::SUMMARY_BLOCK, "Oil relative permeability in the X direction"}},
|
|
|
|
|
{"BOKRX", {A::SUMMARY_BLOCK, "- Oil relative permeability in the -X direction"}},
|
|
|
|
|
{"BOKRY", {A::SUMMARY_BLOCK, "Oil relative permeability in the Y direction"}},
|
|
|
|
|
{"BOKRY", {A::SUMMARY_BLOCK, "- Oil relative permeability in the -Y direction"}},
|
|
|
|
|
{"BOKRZ", {A::SUMMARY_BLOCK, "Oil relative permeability in the Z direction"}},
|
|
|
|
|
{"BOKRZ", {A::SUMMARY_BLOCK, "- Oil relative permeability in the -Z direction"}},
|
|
|
|
|
{"BWKRX", {A::SUMMARY_BLOCK, "Water relative permeability in the X direction"}},
|
|
|
|
|
{"BWKRX", {A::SUMMARY_BLOCK, "- Water relative permeability in the -X direction"}},
|
|
|
|
|
{"BWKRY", {A::SUMMARY_BLOCK, "Water relative permeability in the Y direction"}},
|
|
|
|
|
{"BWKRY", {A::SUMMARY_BLOCK, "- Water relative permeability in the -Y direction"}},
|
|
|
|
|
{"BWKRZ", {A::SUMMARY_BLOCK, "Water relative permeability in the Z direction"}},
|
|
|
|
|
{"BWKRZ", {A::SUMMARY_BLOCK, "- Water relative permeability in the -Z direction"}},
|
|
|
|
|
{"BGKRX", {A::SUMMARY_BLOCK, "Gas relative permeability in the X direction"}},
|
|
|
|
|
{"BGKRX", {A::SUMMARY_BLOCK, "- Gas relative permeability in the -X direction"}},
|
|
|
|
|
{"BGKRY", {A::SUMMARY_BLOCK, "Gas relative permeability in the Y direction"}},
|
|
|
|
|
{"BGKRY", {A::SUMMARY_BLOCK, "- Gas relative permeability in the -Y direction"}},
|
|
|
|
|
{"BGKRZ", {A::SUMMARY_BLOCK, "Gas relative permeability in the Z direction"}},
|
|
|
|
|
{"BGKRZ", {A::SUMMARY_BLOCK, "- Gas relative permeability in the -Z direction"}},
|
|
|
|
|
{"BOKRI", {A::SUMMARY_BLOCK, "Oil relative permeability in the I direction"}},
|
|
|
|
|
{"BOKRI", {A::SUMMARY_BLOCK, "- Oil relative permeability in the -I direction"}},
|
|
|
|
|
{"BOKRJ", {A::SUMMARY_BLOCK, "Oil relative permeability in the J direction"}},
|
|
|
|
|
{"BOKRJ", {A::SUMMARY_BLOCK, "- Oil relative permeability in the -J direction"}},
|
|
|
|
|
{"BOKRK", {A::SUMMARY_BLOCK, "Oil relative permeability in the K direction"}},
|
|
|
|
|
{"BOKRK", {A::SUMMARY_BLOCK, "- Oil relative permeability in the -K direction"}},
|
|
|
|
|
{"BWKRI", {A::SUMMARY_BLOCK, "Water relative permeability in the I direction"}},
|
|
|
|
|
{"BWKRI", {A::SUMMARY_BLOCK, "- Water relative permeability in the -I direction"}},
|
|
|
|
|
{"BWKRJ", {A::SUMMARY_BLOCK, "Water relative permeability in the J direction"}},
|
|
|
|
|
{"BWKRJ", {A::SUMMARY_BLOCK, "- Water relative permeability in the -J direction"}},
|
|
|
|
|
{"BWKRK", {A::SUMMARY_BLOCK, "Water relative permeability in the K direction"}},
|
|
|
|
|
{"BWKRK", {A::SUMMARY_BLOCK, "- Water relative permeability in the -K direction"}},
|
|
|
|
|
{"BGKRI", {A::SUMMARY_BLOCK, "Gas relative permeability in the I direction"}},
|
|
|
|
|
{"BGKRI", {A::SUMMARY_BLOCK, "- Gas relative permeability in the -I direction"}},
|
|
|
|
|
{"BGKRJ", {A::SUMMARY_BLOCK, "Gas relative permeability in the J direction"}},
|
|
|
|
|
{"BGKRJ", {A::SUMMARY_BLOCK, "- Gas relative permeability in the -J direction"}},
|
|
|
|
|
{"BGKRK", {A::SUMMARY_BLOCK, "Gas relative permeability in the K direction"}},
|
|
|
|
|
{"BGKRK", {A::SUMMARY_BLOCK, "- Gas relative permeability in the -K direction"}},
|
|
|
|
|
{"BOKRR", {A::SUMMARY_BLOCK, "Oil relative permeability in the R"}},
|
|
|
|
|
{"BOKRR", {A::SUMMARY_BLOCK, "- Oil relative permeability in the -R"}},
|
|
|
|
|
{"BOKRT", {A::SUMMARY_BLOCK, "Oil relative permeability in the T"}},
|
|
|
|
|
{"BOKRT", {A::SUMMARY_BLOCK, "- Oil relative permeability in the -T"}},
|
|
|
|
|
{"BWKRR", {A::SUMMARY_BLOCK, "Water relative permeability in the R"}},
|
|
|
|
|
{"BWKRR", {A::SUMMARY_BLOCK, "- Water relative permeability in the -R"}},
|
|
|
|
|
{"BWKRT", {A::SUMMARY_BLOCK, "Water relative permeability in the T"}},
|
|
|
|
|
{"BWKRT", {A::SUMMARY_BLOCK, "- Water relative permeability in the -T"}},
|
|
|
|
|
{"BGKRR", {A::SUMMARY_BLOCK, "Gas relative permeability in the R"}},
|
|
|
|
|
{"BGKRR", {A::SUMMARY_BLOCK, "- Gas relative permeability in the -R"}},
|
|
|
|
|
{"BGKRT", {A::SUMMARY_BLOCK, "Gas relative permeability in the T"}},
|
|
|
|
|
{"BGKRT", {A::SUMMARY_BLOCK, "- Gas relative permeability in the -T"}},
|
|
|
|
|
{"BRPV", {A::SUMMARY_BLOCK, "Pore Volume at Reservoir conditions"}},
|
|
|
|
|
{"BPORV", {A::SUMMARY_BLOCK, "Cell Pore Volumes at Reference conditions"}},
|
|
|
|
|
{"BOPV", {A::SUMMARY_BLOCK, "Pore Volume containing Oil"}},
|
|
|
|
|
{"BWPV", {A::SUMMARY_BLOCK, "Pore Volume containing Water"}},
|
|
|
|
|
{"BGPV", {A::SUMMARY_BLOCK, "Pore Volume containing Gas"}},
|
|
|
|
|
{"BHPV", {A::SUMMARY_BLOCK, "Pore Volume containing Hydrocarbon"}},
|
|
|
|
|
{"BRTM", {A::SUMMARY_BLOCK, "Transmissibility Multiplier associated with rock compaction"}},
|
|
|
|
|
{"BPERMMOD", {A::SUMMARY_BLOCK, "Transmissibility Multiplier associated with rock compaction"}},
|
|
|
|
|
{"BPERMMDX",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Directional Transmissibility Multipliers in the X direction, associated with rock compaction"}},
|
|
|
|
|
{"BPERMMDY",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Directional Transmissibility Multipliers in the Y direction, associated with rock compaction"}},
|
|
|
|
|
{"BPERMMDZ",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Directional Transmissibility Multipliers in the Z direction, associated with rock compaction"}},
|
|
|
|
|
{"BPORVMOD", {A::SUMMARY_BLOCK, "Pore Volume Multiplier associated with rock compaction"}},
|
|
|
|
|
{"BSIGMMOD", {A::SUMMARY_BLOCK, "Dual Porosity Sigma Multiplier associated with rock compaction"}},
|
|
|
|
|
{"BTCNF", {A::SUMMARY_BLOCK, "Tracer Concentration"}},
|
|
|
|
|
{"BTCNS", {A::SUMMARY_BLOCK, "Tracer Concentration"}},
|
|
|
|
|
{"BTCN", {A::SUMMARY_BLOCK, "Tracer Concentration"}},
|
|
|
|
|
{"BTIPT", {A::SUMMARY_BLOCK, "Tracer In Place"}},
|
|
|
|
|
{"BTIPF", {A::SUMMARY_BLOCK, "Tracer In Place"}},
|
|
|
|
|
{"BTIPS", {A::SUMMARY_BLOCK, "Tracer In Place"}},
|
|
|
|
|
{"BAPI", {A::SUMMARY_BLOCK, "Oil API"}},
|
|
|
|
|
{"BSCN", {A::SUMMARY_BLOCK, "Salt Cell Concentration"}},
|
|
|
|
|
{"BSIP", {A::SUMMARY_BLOCK, "Salt In Place"}},
|
|
|
|
|
{"BEWV_SAL", {A::SUMMARY_BLOCK, "Effective water viscosity due to salt concentration"}},
|
|
|
|
|
{"BTCNFANI", {A::SUMMARY_BLOCK, "Anion Flowing Concentration"}},
|
|
|
|
|
{"BTCNFCAT", {A::SUMMARY_BLOCK, "Cation Flowing Concentration"}},
|
|
|
|
|
{"BTRADCAT", {A::SUMMARY_BLOCK, "Cation Rock Associated Concentration"}},
|
|
|
|
|
{"BTSADCAT", {A::SUMMARY_BLOCK, "Cation Surfactant Associated Concentration"}},
|
|
|
|
|
{"BESALSUR", {A::SUMMARY_BLOCK, "Effective Salinity with respect to Surfactant"}},
|
|
|
|
|
{"BESALPLY", {A::SUMMARY_BLOCK, "Effective Salinity with respect to Polymer"}},
|
|
|
|
|
{"BTCNFHEA", {A::SUMMARY_BLOCK, "Block Temperature"}},
|
|
|
|
|
{"BTIPTHEA", {A::SUMMARY_BLOCK, "Difference in Energy in place between current and initial time"}},
|
|
|
|
|
{"BTCNF", {A::SUMMARY_BLOCK, "Tracer Concentration"}},
|
|
|
|
|
{"BTCNS", {A::SUMMARY_BLOCK, "Tracer Concentration"}},
|
|
|
|
|
{"BTCN#", {A::SUMMARY_BLOCK, "Tracer concentration in phase # (1,2,3,...)"}},
|
|
|
|
|
{"BTIPT", {A::SUMMARY_BLOCK, "Tracer In Place"}},
|
|
|
|
|
{"BTIPF", {A::SUMMARY_BLOCK, "Tracer In Place"}},
|
|
|
|
|
{"BTIPS", {A::SUMMARY_BLOCK, "Tracer In Place"}},
|
|
|
|
|
{"BTIP#", {A::SUMMARY_BLOCK, "Tracer In Place in phase # (1,2,3,...)"}},
|
|
|
|
|
{"BTADS", {A::SUMMARY_BLOCK, "Tracer Adsorption"}},
|
|
|
|
|
{"BTDCY", {A::SUMMARY_BLOCK, "Decayed tracer"}},
|
|
|
|
|
{"BCGC", {A::SUMMARY_BLOCK, "Bulk Coal Gas Concentration"}},
|
|
|
|
|
{"BCSC", {A::SUMMARY_BLOCK, "Bulk Coal Solvent Concentration"}},
|
|
|
|
|
{"BTCNFFOA", {A::SUMMARY_BLOCK, "Concentration"}},
|
|
|
|
|
{"BFOAM", {A::SUMMARY_BLOCK, "Surfactant concentration"}},
|
|
|
|
|
{"BTCNMFOA", {A::SUMMARY_BLOCK, "Capillary number"}},
|
|
|
|
|
{"BFOAMCNM", {A::SUMMARY_BLOCK, "Capillary number"}},
|
|
|
|
|
{"BTIPTFOA", {A::SUMMARY_BLOCK, "In Solution"}},
|
|
|
|
|
{"BTADSFOA", {A::SUMMARY_BLOCK, "Adsorption"}},
|
|
|
|
|
{"BTDCYFOA", {A::SUMMARY_BLOCK, "Decayed tracer"}},
|
|
|
|
|
{"BTMOBFOA", {A::SUMMARY_BLOCK, "Gas mobility factor"}},
|
|
|
|
|
{"BFOAMMOB", {A::SUMMARY_BLOCK, "Gas mobility factor"}},
|
|
|
|
|
{"BTHLFFOA", {A::SUMMARY_BLOCK, "Decay Half life"}},
|
|
|
|
|
{"BGI", {A::SUMMARY_BLOCK, "Block Gi value"}},
|
|
|
|
|
{"BCCN", {A::SUMMARY_BLOCK, "Polymer Concentration"}},
|
|
|
|
|
{"BCIP", {A::SUMMARY_BLOCK, "Polymer In Solution"}},
|
|
|
|
|
{"BEPVIS", {A::SUMMARY_BLOCK, "Effective polymer solution viscosity"}},
|
|
|
|
|
{"BVPOLY", {A::SUMMARY_BLOCK, "Effective polymer solution viscosity"}},
|
|
|
|
|
{"BEMVIS", {A::SUMMARY_BLOCK, "Effective mixture"}},
|
|
|
|
|
{"BEWV_POL", {A::SUMMARY_BLOCK, "Effective water viscosity"}},
|
|
|
|
|
{"BCAD", {A::SUMMARY_BLOCK, "Polymer Adsorption concentration"}},
|
|
|
|
|
{"BCDCS", {A::SUMMARY_BLOCK, "Polymer thermal degradation - total mass degraded in previous timestep"}},
|
|
|
|
|
{"BCDCR", {A::SUMMARY_BLOCK, "Polymer thermal degradation - total degradation rate"}},
|
|
|
|
|
{"BCDCP", {A::SUMMARY_BLOCK, "Polymer thermal degradation solution degradation rate"}},
|
|
|
|
|
{"BCDCA", {A::SUMMARY_BLOCK, "Polymer thermal degradation adsorbed degradation rate"}},
|
|
|
|
|
{"BCABnnn", {A::SUMMARY_BLOCK, "Adsorbed polymer by highest temperature band at which RRF was calculated"}},
|
|
|
|
|
{"BSCN", {A::SUMMARY_BLOCK, "Salt Cell Concentration"}},
|
|
|
|
|
{"BSIP", {A::SUMMARY_BLOCK, "Salt In Place"}},
|
|
|
|
|
{"BFLOW0I",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Inter-block water flow rate in the positive I direction multiplied by the corresponding shear multiplier"}},
|
|
|
|
|
{"BFLOW0J",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Inter-block water flow rate in the positive J direction multiplied by the corresponding shear multiplier"}},
|
|
|
|
|
{"BFLOW0K",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Inter-block water flow rate in the positive K direction multiplied by the corresponding shear multiplier"}},
|
|
|
|
|
{"BVELW0I",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Water velocity in the positive I direction multiplied by the corresponding shear multiplier"}},
|
|
|
|
|
{"BVELW0J",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Water velocity in the positive J direction multiplied by the corresponding shear multiplier"}},
|
|
|
|
|
{"BVELW0K",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Water velocity in the positive K direction multiplied by the corresponding shear multiplier"}},
|
|
|
|
|
{"BPSHLZI", {A::SUMMARY_BLOCK, "Viscosity multiplier due to sheared water flow in the positive I direction"}},
|
|
|
|
|
{"BPSHLZJ", {A::SUMMARY_BLOCK, "Viscosity multiplier due to sheared water flow in the positive J direction"}},
|
|
|
|
|
{"BPSHLZK", {A::SUMMARY_BLOCK, "Viscosity multiplier due to sheared water flow in the positive K direction"}},
|
|
|
|
|
{"BSRTW0I", {A::SUMMARY_BLOCK, "Water shear rate in the positive I direction prior to shear effects"}},
|
|
|
|
|
{"BSRTW0J", {A::SUMMARY_BLOCK, "Water shear rate in the positive J direction prior to shear effects"}},
|
|
|
|
|
{"BSRTW0K", {A::SUMMARY_BLOCK, "Water shear rate in the positive K direction prior to shear effects"}},
|
|
|
|
|
{"BSRTWI", {A::SUMMARY_BLOCK, "Water shear rate in the positive I direction following shear effects"}},
|
|
|
|
|
{"BSRTWJ", {A::SUMMARY_BLOCK, "Water shear rate in the positive J direction following shear effects"}},
|
|
|
|
|
{"BSRTWK", {A::SUMMARY_BLOCK, "Water shear rate in the positive K direction following shear effects"}},
|
|
|
|
|
{"BSHWVISI",
|
|
|
|
|
{A::SUMMARY_BLOCK, "Shear viscosity of the water/polymer solution due to shear thinning/thickening in the positive I direction"}},
|
|
|
|
|
{"BSHWVISJ",
|
|
|
|
|
{A::SUMMARY_BLOCK, "Shear viscosity of the water/polymer solution due to shear thinning/thickening in the positive J direction"}},
|
|
|
|
|
{"BSHWVISK",
|
|
|
|
|
{A::SUMMARY_BLOCK, "Shear viscosity of the water/polymer solution due to shear thinning/thickening in the positive K direction"}},
|
|
|
|
|
{"BNSAT", {A::SUMMARY_BLOCK, "Solvent SATuration"}},
|
|
|
|
|
{"BNIP", {A::SUMMARY_BLOCK, "Solvent In Place"}},
|
|
|
|
|
{"BNKR", {A::SUMMARY_BLOCK, "Solvent relative permeability"}},
|
|
|
|
|
{"BTCNFSUR", {A::SUMMARY_BLOCK, "Concentration"}},
|
|
|
|
|
{"BSURF", {A::SUMMARY_BLOCK, "Concentration in solution"}},
|
|
|
|
|
{"BTIPTSUR", {A::SUMMARY_BLOCK, "In Solution"}},
|
|
|
|
|
{"BTADSUR", {A::SUMMARY_BLOCK, "Adsorption"}},
|
|
|
|
|
{"BTCASUR", {A::SUMMARY_BLOCK, "Log"}},
|
|
|
|
|
{"BSURFCNM", {A::SUMMARY_BLOCK, "Log"}},
|
|
|
|
|
{"BTSTSUR", {A::SUMMARY_BLOCK, "Surface tension"}},
|
|
|
|
|
{"BSURFST", {A::SUMMARY_BLOCK, "Surface tension"}},
|
|
|
|
|
{"BEWV_SUR", {A::SUMMARY_BLOCK, "Effective water viscosity due to surfactant concentration"}},
|
|
|
|
|
{"BESVIS", {A::SUMMARY_BLOCK, "Effective water viscosity due to surfactant concentration"}},
|
|
|
|
|
{"BTCNFALK", {A::SUMMARY_BLOCK, "Concentration"}},
|
|
|
|
|
{"BTADSALK", {A::SUMMARY_BLOCK, "Adsorption"}},
|
|
|
|
|
{"BTSTMALK", {A::SUMMARY_BLOCK, "Surface tension multiplier"}},
|
|
|
|
|
{"BTSADALK", {A::SUMMARY_BLOCK, "Surfactant adsorption multiplier"}},
|
|
|
|
|
{"BTPADALK", {A::SUMMARY_BLOCK, "Polymer adsorption multiplier"}},
|
|
|
|
|
{"BKRGOE", {A::SUMMARY_BLOCK, "Equivalent relative permeability to gas for gas-oil system"}},
|
|
|
|
|
{"BKRGWE", {A::SUMMARY_BLOCK, "Equivalent relative permeability to gas for gas-water system"}},
|
|
|
|
|
{"BKRWGE", {A::SUMMARY_BLOCK, "Equivalent relative permeability to water for water-gas system"}},
|
|
|
|
|
{"BKROWT",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Opposite saturation direction turning point relative permeability to oil for oil-water system"}},
|
|
|
|
|
{"BKRWOT",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Opposite saturation direction turning point relative permeability to water for water-oil system"}},
|
|
|
|
|
{"BKROGT",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Opposite saturation direction turning point relative permeability to oil for oil-gas system"}},
|
|
|
|
|
{"BKRGOT",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Opposite saturation direction turning point relative permeability to gas for gas-oil system"}},
|
|
|
|
|
{"BKRGWT",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Opposite saturation direction turning point relative permeability to gas for gas-water system"}},
|
|
|
|
|
{"BKRWGT",
|
|
|
|
|
{A::SUMMARY_BLOCK,
|
|
|
|
|
"Opposite saturation direction turning point relative permeability to water for water-gas system"}},
|
|
|
|
|
{"BIFTOW", {A::SUMMARY_BLOCK, "Oil-water interfacial tension"}},
|
|
|
|
|
{"BIFTWO", {A::SUMMARY_BLOCK, "Water-oil interfacial tension"}},
|
|
|
|
|
{"BIFTOG", {A::SUMMARY_BLOCK, "Oil-gas interfacial tension"}},
|
|
|
|
|
{"BIFTGO", {A::SUMMARY_BLOCK, "Gas-oil interfacial tension"}},
|
|
|
|
|
{"BIFTGW", {A::SUMMARY_BLOCK, "Gas-water interfacial tension"}},
|
|
|
|
|
{"BIFTWG", {A::SUMMARY_BLOCK, "Water-gas interfacial tension"}},
|
|
|
|
|
{"BPCOWR", {A::SUMMARY_BLOCK, "Representative oil-water capillary pressure"}},
|
|
|
|
|
{"BPCWOR", {A::SUMMARY_BLOCK, "Representative water-oil capillary pressure"}},
|
|
|
|
|
{"BPCOGR", {A::SUMMARY_BLOCK, "Representative oil-gas capillary pressure"}},
|
|
|
|
|
{"BPCGOR", {A::SUMMARY_BLOCK, "Representative gas-oil capillary pressure"}},
|
|
|
|
|
{"BPCGWR", {A::SUMMARY_BLOCK, "Representative gas-water capillary pressure"}},
|
|
|
|
|
{"BPCWGR", {A::SUMMARY_BLOCK, "Representative water-gas capillary pressure"}},
|
2017-10-16 08:13:31 -05:00
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
{"SOFR", {A::SUMMARY_WELL_SEGMENT, "Segment Oil Flow Rate"}},
|
|
|
|
|
{"SOFRF", {A::SUMMARY_WELL_SEGMENT, "Segment Free Oil Flow Rate"}},
|
|
|
|
|
{"SOFRS", {A::SUMMARY_WELL_SEGMENT, "Segment Solution Oil Flow Rate"}},
|
|
|
|
|
{"SWFR", {A::SUMMARY_WELL_SEGMENT, "Segment Water Flow Rate"}},
|
|
|
|
|
{"SGFR", {A::SUMMARY_WELL_SEGMENT, "Segment Gas Flow Rate"}},
|
|
|
|
|
{"SGFRF", {A::SUMMARY_WELL_SEGMENT, "Segment Free Gas Flow Rate"}},
|
|
|
|
|
{"SGFRS", {A::SUMMARY_WELL_SEGMENT, "Segment Solution Gas Flow Rate"}},
|
|
|
|
|
{"SKFR", {A::SUMMARY_WELL_SEGMENT, "Segment Component Flow Rate"}},
|
|
|
|
|
{"SCWGFR", {A::SUMMARY_WELL_SEGMENT, "Segment Component Flow Rate as Wet Gas"}},
|
|
|
|
|
{"SHFR", {A::SUMMARY_WELL_SEGMENT, "Segment Enthalpy Flow Rate"}},
|
|
|
|
|
{"SWCT", {A::SUMMARY_WELL_SEGMENT, "Segment Water Cut"}},
|
|
|
|
|
{"SGOR", {A::SUMMARY_WELL_SEGMENT, "Segment Gas Oil Ratio"}},
|
|
|
|
|
{"SOGR", {A::SUMMARY_WELL_SEGMENT, "Segment Oil Gas Ratio"}},
|
|
|
|
|
{"SWGR", {A::SUMMARY_WELL_SEGMENT, "Segment Water Gas Ratio"}},
|
|
|
|
|
{"SPR", {A::SUMMARY_WELL_SEGMENT, "Segment Pressure"}},
|
|
|
|
|
{"SPRD", {A::SUMMARY_WELL_SEGMENT, "Segment Pressure Drop"}},
|
|
|
|
|
{"SPRDF", {A::SUMMARY_WELL_SEGMENT, "Segment Pressure Drop component due to Friction"}},
|
|
|
|
|
{"SPRDH", {A::SUMMARY_WELL_SEGMENT, "Segment Pressure Drop component due to Hydrostatic head"}},
|
|
|
|
|
{"SPRDA", {A::SUMMARY_WELL_SEGMENT, "Segment Pressure drop due to Acceleration head"}},
|
|
|
|
|
{"SPRDM", {A::SUMMARY_WELL_SEGMENT, "Segment frictional Pressure Drop Multiplier"}},
|
|
|
|
|
{"SPPOW", {A::SUMMARY_WELL_SEGMENT, "Working power of a pull through pump"}},
|
|
|
|
|
{"SOFV", {A::SUMMARY_WELL_SEGMENT, "Segment Oil Flow Velocity"}},
|
|
|
|
|
{"SWFV", {A::SUMMARY_WELL_SEGMENT, "Segment Water Flow Velocity"}},
|
|
|
|
|
{"SGFV", {A::SUMMARY_WELL_SEGMENT, "Segment Gas Flow Velocity"}},
|
|
|
|
|
{"SOHF", {A::SUMMARY_WELL_SEGMENT, "Segment Oil Holdup Fraction"}},
|
|
|
|
|
{"SWHF", {A::SUMMARY_WELL_SEGMENT, "Segment Water Holdup Fraction"}},
|
|
|
|
|
{"SGHF", {A::SUMMARY_WELL_SEGMENT, "Segment Gas Holdup Fraction"}},
|
|
|
|
|
{"SDENM", {A::SUMMARY_WELL_SEGMENT, "Segment fluid mixture density"}},
|
|
|
|
|
{"SOVIS", {A::SUMMARY_WELL_SEGMENT, "Segment oil viscosity"}},
|
|
|
|
|
{"SWVIS", {A::SUMMARY_WELL_SEGMENT, "Segment water viscosity"}},
|
|
|
|
|
{"SGVIS", {A::SUMMARY_WELL_SEGMENT, "Segment gas viscosity"}},
|
|
|
|
|
{"SEMVIS", {A::SUMMARY_WELL_SEGMENT, "Segment effective mixture viscosity"}},
|
|
|
|
|
{"SGLPP", {A::SUMMARY_WELL_SEGMENT, "Segment Gas-Liquid Profile Parameter, C0"}},
|
|
|
|
|
{"SGLVD", {A::SUMMARY_WELL_SEGMENT, "Segment Gas-Liquid Drift Velocity, Vd"}},
|
|
|
|
|
{"SOWPP", {A::SUMMARY_WELL_SEGMENT, "Segment Oil-Water Profile Parameter, C0"}},
|
|
|
|
|
{"SOWVD", {A::SUMMARY_WELL_SEGMENT, "Segment Oil-Water Drift Velocity, Vd"}},
|
|
|
|
|
{"SOIMR", {A::SUMMARY_WELL_SEGMENT, "Segment Oil Import Rate"}},
|
|
|
|
|
{"SGIMR", {A::SUMMARY_WELL_SEGMENT, "Segment Gas Import Rate"}},
|
|
|
|
|
{"SWIMR", {A::SUMMARY_WELL_SEGMENT, "Segment Water Import Rate"}},
|
|
|
|
|
{"SHIMR", {A::SUMMARY_WELL_SEGMENT, "Segment Enthalpy Import Rate"}},
|
|
|
|
|
{"SORMR", {A::SUMMARY_WELL_SEGMENT, "Segment Oil Removal Rate"}},
|
|
|
|
|
{"SGRMR", {A::SUMMARY_WELL_SEGMENT, "Segment Gas Removal Rate"}},
|
|
|
|
|
{"SWRMR", {A::SUMMARY_WELL_SEGMENT, "Segment Water Removal Rate"}},
|
|
|
|
|
{"SHRMR", {A::SUMMARY_WELL_SEGMENT, "Segment Enthalpy Removal Rate"}},
|
|
|
|
|
{"SOIMT", {A::SUMMARY_WELL_SEGMENT, "Segment Oil Import Total"}},
|
|
|
|
|
{"SGIMT", {A::SUMMARY_WELL_SEGMENT, "Segment Gas Import Total"}},
|
|
|
|
|
{"SWIMT", {A::SUMMARY_WELL_SEGMENT, "Segment Water Import Total"}},
|
|
|
|
|
{"SHIMT", {A::SUMMARY_WELL_SEGMENT, "Segment Enthalpy Import Total"}},
|
|
|
|
|
{"SORMT", {A::SUMMARY_WELL_SEGMENT, "Segment Oil Removal Total"}},
|
|
|
|
|
{"SGRMT", {A::SUMMARY_WELL_SEGMENT, "Segment Gas Removal Total"}},
|
|
|
|
|
{"SWRMT", {A::SUMMARY_WELL_SEGMENT, "Segment Water Removal Total"}},
|
|
|
|
|
{"SHRMT", {A::SUMMARY_WELL_SEGMENT, "Segment Enthalpy Removal Total"}},
|
|
|
|
|
{"SAPI", {A::SUMMARY_WELL_SEGMENT, "Segment API value"}},
|
|
|
|
|
{"SCFR", {A::SUMMARY_WELL_SEGMENT, "Segment polymer flow rate"}},
|
|
|
|
|
{"SCCN", {A::SUMMARY_WELL_SEGMENT, "Segment polymer concentration"}},
|
|
|
|
|
{"SSFR", {A::SUMMARY_WELL_SEGMENT, "Segment brine flow rate"}},
|
|
|
|
|
{"SSCN", {A::SUMMARY_WELL_SEGMENT, "Segment brine concentration"}},
|
|
|
|
|
{"STFR", {A::SUMMARY_WELL_SEGMENT, "Segment tracer flow rate"}},
|
|
|
|
|
{"STFC", {A::SUMMARY_WELL_SEGMENT, "Segment tracer concentration"}},
|
|
|
|
|
{"SFD", {A::SUMMARY_WELL_SEGMENT, "Segment diameter for Karst Conduit Calcite Dissolution"}},
|
|
|
|
|
{"SPSAT", {A::SUMMARY_WELL_SEGMENT, "Segment Psat"}},
|
|
|
|
|
{"STEM", {A::SUMMARY_WELL_SEGMENT, "Segment Temperature"}},
|
|
|
|
|
{"SENE", {A::SUMMARY_WELL_SEGMENT, "Segment Energy Density"}},
|
|
|
|
|
{"SSQU", {A::SUMMARY_WELL_SEGMENT, "Segment Steam Quality"}},
|
|
|
|
|
{"SCVPR", {A::SUMMARY_WELL_SEGMENT, "Segment Calorific Value Production Rate"}},
|
|
|
|
|
{"SGQ", {A::SUMMARY_WELL_SEGMENT, "Segment Gas Quality"}},
|
|
|
|
|
{"SCSA", {A::SUMMARY_WELL_SEGMENT, "Segment Cross Sectional Area"}},
|
|
|
|
|
{"SSTR", {A::SUMMARY_WELL_SEGMENT, "Strength of ICD on segment"}},
|
|
|
|
|
{"SFOPN", {A::SUMMARY_WELL_SEGMENT, "Setting of segment"}},
|
|
|
|
|
{"SALQ", {A::SUMMARY_WELL_SEGMENT, "Artificial lift quantity for segment"}},
|
|
|
|
|
{"SRRQR", {A::SUMMARY_WELL_SEGMENT, "Reach flow at current time"}},
|
|
|
|
|
{"SRRQT", {A::SUMMARY_WELL_SEGMENT, "Reach cumulative flow"}},
|
|
|
|
|
{"SRBQR", {A::SUMMARY_WELL_SEGMENT, "Branch flow at current time"}},
|
|
|
|
|
{"SRBQT", {A::SUMMARY_WELL_SEGMENT, "Branch cumulative flow"}},
|
|
|
|
|
{"SRTQR", {A::SUMMARY_WELL_SEGMENT, "River total flow at current time"}},
|
|
|
|
|
{"SRTQT", {A::SUMMARY_WELL_SEGMENT, "River total cumulative flow"}},
|
|
|
|
|
{"SRRFLOW", {A::SUMMARY_WELL_SEGMENT, "Reach flux through cross-sectional area at current time"}},
|
|
|
|
|
{"SRRAREA", {A::SUMMARY_WELL_SEGMENT, "Reach area at current time"}},
|
|
|
|
|
{"SRRDEPTH", {A::SUMMARY_WELL_SEGMENT, "Reach depth at current time"}},
|
|
|
|
|
{"SRREXCH", {A::SUMMARY_WELL_SEGMENT, "Exchange flux at current time"}},
|
|
|
|
|
{"SRRFRODE", {A::SUMMARY_WELL_SEGMENT, "Reach Froude number at current time"}},
|
|
|
|
|
{"SRRHEAD", {A::SUMMARY_WELL_SEGMENT, "Reach hydraulic head at current time"}},
|
|
|
|
|
{"SRTFR", {A::SUMMARY_WELL_SEGMENT, "Reach tracer flow rate"}},
|
|
|
|
|
{"SRTFC", {A::SUMMARY_WELL_SEGMENT, "Reach tracer concentration"}},
|
|
|
|
|
{"SRSFR", {A::SUMMARY_WELL_SEGMENT, "Reach brine flow rate through connections"}},
|
|
|
|
|
{"SRSFC", {A::SUMMARY_WELL_SEGMENT, "Reach brine concentration"}},
|
|
|
|
|
{"SU", {A::SUMMARY_WELL_SEGMENT, "User-defined segment quantity"}},
|
2017-10-16 08:13:31 -05:00
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
{"AAQR", {A::SUMMARY_AQUIFER, "Aquifer influx rate"}},
|
|
|
|
|
{"ALQR", {A::SUMMARY_AQUIFER, "Aquifer influx rate"}},
|
|
|
|
|
{"AAQT", {A::SUMMARY_AQUIFER, "Cumulative aquifer influx"}},
|
|
|
|
|
{"ALQT", {A::SUMMARY_AQUIFER, "Cumulative aquifer influx"}},
|
|
|
|
|
{"AAQRG", {A::SUMMARY_AQUIFER, "Aquifer influx rate"}},
|
|
|
|
|
{"ALQRG", {A::SUMMARY_AQUIFER, "Aquifer influx rate"}},
|
|
|
|
|
{"AAQTG", {A::SUMMARY_AQUIFER, "Cumulative aquifer influx"}},
|
|
|
|
|
{"ALQTG", {A::SUMMARY_AQUIFER, "Cumulative aquifer influx"}},
|
|
|
|
|
{"AACMR", {A::SUMMARY_AQUIFER, "Aquifer component molar influx rate"}},
|
|
|
|
|
{"AACMT", {A::SUMMARY_AQUIFER, "Aquifer component molar influx totals"}},
|
|
|
|
|
{"AAQP", {A::SUMMARY_AQUIFER, "Aquifer pressure"}},
|
|
|
|
|
{"AAQER", {A::SUMMARY_AQUIFER, "Aquifer thermal energy influx rate"}},
|
|
|
|
|
{"AAQET", {A::SUMMARY_AQUIFER, "Cumulative aquifer thermal energy influx"}},
|
|
|
|
|
{"AAQTEMP", {A::SUMMARY_AQUIFER, "Aquifer temperature"}},
|
|
|
|
|
{"AAQENTH", {A::SUMMARY_AQUIFER, "Aquifer molar enthalpy"}},
|
|
|
|
|
{"AAQTD", {A::SUMMARY_AQUIFER, "Aquifer dimensionless time"}},
|
|
|
|
|
{"AAQPD", {A::SUMMARY_AQUIFER, "Aquifer dimensionless pressure"}},
|
|
|
|
|
{"ANQR", {A::SUMMARY_AQUIFER, "Aquifer influx rate"}},
|
|
|
|
|
{"ANQT", {A::SUMMARY_AQUIFER, "Cumulative aquifer influx"}},
|
|
|
|
|
{"ANQP", {A::SUMMARY_AQUIFER, "Aquifer pressure"}},
|
2017-10-16 08:13:31 -05:00
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
|
{"CPU", {A::SUMMARY_MISC, "CPU"}},
|
|
|
|
|
{"DATE", {A::SUMMARY_MISC, "Date"}},
|
|
|
|
|
{"DAY", {A::SUMMARY_MISC, "Day"}},
|
|
|
|
|
{"ELAPSED", {A::SUMMARY_MISC, "Elapsed time in seconds"}},
|
|
|
|
|
{"MLINEARS", {A::SUMMARY_MISC, "Number linear iterations for each timestep"}},
|
|
|
|
|
{"MONTH", {A::SUMMARY_MISC, "Month"}},
|
|
|
|
|
{"MSUMLINS", {A::SUMMARY_MISC, "Total number of linear iterations since the start of the run"}},
|
|
|
|
|
{"MSUMNEWT", {A::SUMMARY_MISC, "Total number of Newton iterations since the start of the run"}},
|
|
|
|
|
{"NEWTON", {A::SUMMARY_MISC, "Number of Newton iterations used for each timestep"}},
|
|
|
|
|
{"STEPTYPE", {A::SUMMARY_MISC, "Step type"}},
|
|
|
|
|
{"TCPU", {A::SUMMARY_MISC, "TCPU"}},
|
|
|
|
|
{"TCPUDAY", {A::SUMMARY_MISC, "TCPUDAY"}},
|
|
|
|
|
{"TCPUTS", {A::SUMMARY_MISC, "TCPUTS"}},
|
|
|
|
|
{"TELAPLIN", {A::SUMMARY_MISC, "TELAPLIN"}},
|
|
|
|
|
{"TIME", {A::SUMMARY_MISC, "Time"}},
|
|
|
|
|
{"TIMESTEP", {A::SUMMARY_MISC, "Time step"}},
|
|
|
|
|
{"TIMESTRY", {A::SUMMARY_MISC, "TIMESTRY"}},
|
|
|
|
|
{"YEAR", {A::SUMMARY_MISC, "Year"}},
|
|
|
|
|
{"YEARS", {A::SUMMARY_MISC, "Years"}}};
|
2017-10-16 08:13:31 -05:00
|
|
|
|
}
|