diff --git a/opm/parser/eclipse/EclipseState/EclipseState.cpp b/opm/parser/eclipse/EclipseState/EclipseState.cpp index 2622d8378..c2fe07f2b 100644 --- a/opm/parser/eclipse/EclipseState/EclipseState.cpp +++ b/opm/parser/eclipse/EclipseState/EclipseState.cpp @@ -297,6 +297,19 @@ namespace Opm { // porosity SupportedDoubleKeywordInfo( "PORO" , 0.0, "1" ), + // the permeability keywords + SupportedDoubleKeywordInfo( "PERMX" , 0.0, "Permeability" ), + SupportedDoubleKeywordInfo( "PERMY" , 0.0, "Permeability" ), + SupportedDoubleKeywordInfo( "PERMZ" , 0.0, "Permeability" ), + SupportedDoubleKeywordInfo( "PERMXY", 0.0, "Permeability" ), // E300 only + SupportedDoubleKeywordInfo( "PERMXZ", 0.0, "Permeability" ), // E300 only + SupportedDoubleKeywordInfo( "PERMYZ", 0.0, "Permeability" ), // E300 only + + // gross-to-net thickness (acts as a multiplier for PORO + // and the permeabilities in the X-Y plane as well as for + // the well rates.) + SupportedDoubleKeywordInfo( "NTG" , 1.0, "1" ), + // transmissibility multipliers SupportedDoubleKeywordInfo( "MULTX" , 1.0, "1" ), SupportedDoubleKeywordInfo( "MULTY" , 1.0, "1" ), @@ -307,14 +320,6 @@ namespace Opm { // pore volume multipliers SupportedDoubleKeywordInfo( "MULTPV", 1.0, "1" ), - - // the permeability keywords - SupportedDoubleKeywordInfo( "PERMX" , 0.0, "Permeability" ), - SupportedDoubleKeywordInfo( "PERMY" , 0.0, "Permeability" ), - SupportedDoubleKeywordInfo( "PERMZ" , 0.0, "Permeability" ), - SupportedDoubleKeywordInfo( "PERMXY", 0.0, "Permeability" ), // E300 only - SupportedDoubleKeywordInfo( "PERMXZ", 0.0, "Permeability" ), // E300 only - SupportedDoubleKeywordInfo( "PERMYZ", 0.0, "Permeability" ), // E300 only }; m_intGridProperties = std::make_shared >(m_eclipseGrid->getNX() , m_eclipseGrid->getNY() , m_eclipseGrid->getNZ() , supportedIntKeywords); diff --git a/opm/parser/share/keywords/N/NTG b/opm/parser/share/keywords/N/NTG index 1d2266882..bc095d52a 100644 --- a/opm/parser/share/keywords/N/NTG +++ b/opm/parser/share/keywords/N/NTG @@ -1 +1 @@ -{"name" : "NTG" , "data" : {"value_type" : "DOUBLE"}} \ No newline at end of file +{"name" : "NTG" , "data" : {"value_type" : "DOUBLE", "dimension" : "1"}}