Files
ResInsight/ApplicationCode/UserInterface/RiuSummaryVectorDescriptionMap.cpp
2017-10-17 09:52:31 +02:00

1859 lines
141 KiB
C++
Raw Blame History

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