mirror of
https://github.com/OPM/opm-simulators.git
synced 2024-12-27 09:40:59 -06:00
Merge pull request #3959 from blattms/warn-long-fault
Warn about fault names with more than 8 characters
This commit is contained in:
commit
5b2d1ca5ec
@ -34,6 +34,7 @@
|
||||
#include <opm/output/data/GuideRateValue.hpp>
|
||||
#include <opm/output/data/Solution.hpp>
|
||||
#include <opm/output/data/Wells.hpp>
|
||||
#include <opm/input/eclipse/EclipseState/Util/OrderedMap.hpp>
|
||||
#include <opm/output/eclipse/EclipseIO.hpp>
|
||||
#include <opm/output/eclipse/RestartValue.hpp>
|
||||
#include <opm/input/eclipse/Schedule/SummaryState.hpp>
|
||||
@ -1090,6 +1091,8 @@ INSTANTIATE_PACK(std::map<std::string,double>)
|
||||
INSTANTIATE_PACK(std::map<int,int>)
|
||||
INSTANTIATE_PACK(std::map<int,data::AquiferData>)
|
||||
INSTANTIATE_PACK(std::unordered_map<std::string,size_t>)
|
||||
INSTANTIATE_PACK(std::unordered_map<std::string,size_t,Opm::OrderedMapDetail::TruncatedStringHash<std::string::npos>, Opm::OrderedMapDetail::TruncatedStringEquals<std::string::npos>>)
|
||||
INSTANTIATE_PACK(std::unordered_map<std::string,size_t,Opm::OrderedMapDetail::TruncatedStringHash<8>, Opm::OrderedMapDetail::TruncatedStringEquals<8>>)
|
||||
INSTANTIATE_PACK(std::unordered_map<std::string,std::string>)
|
||||
INSTANTIATE_PACK(std::unordered_set<std::string>)
|
||||
INSTANTIATE_PACK(std::set<std::string>)
|
||||
|
@ -82,6 +82,14 @@ partiallySupported()
|
||||
{2,{false, allow_values<std::string> {"TAB"}, "FOAMOPTS(FOAMOPT2): only the default option of TAB is supported – value ignored"}}, // MODEL
|
||||
},
|
||||
},
|
||||
{
|
||||
"FAULTS",
|
||||
{
|
||||
{1, {false, [](const std::string& val){ return val.size()<=8;},
|
||||
"FAULTS(FLTNAME): Only names of faults up to 8 characters are supported. Will ignore excess characters."
|
||||
}
|
||||
},},
|
||||
},
|
||||
{
|
||||
"GCONINJE",
|
||||
{
|
||||
@ -123,6 +131,15 @@ partiallySupported()
|
||||
{3,{false, allow_values<std::string> {"NONE"}, "MISCIBLE(MISOPT): only option NONE is supported – value ignored"}}, // TWOPOINT
|
||||
},
|
||||
},
|
||||
{
|
||||
"MULTFLT",
|
||||
{
|
||||
{1, {false, [](const std::string& val){ return val.size()<=8;},
|
||||
"MLTFLT(FLTNAME): Only names of faults up to 8 characters are supported. Will ignore excess characters."
|
||||
}
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
"MULTIREG",
|
||||
{
|
||||
@ -198,6 +215,15 @@ partiallySupported()
|
||||
{25,{false, allow_values<std::string> {}, "TABDIMS(RESVED): should be defaulted (1*) - ignored as not used"}}, // RESERVED
|
||||
},
|
||||
},
|
||||
{
|
||||
"THPRESFT",
|
||||
{
|
||||
{1, {false, [](const std::string& val){ return val.size()<=8;},
|
||||
"THPRESFT(FLTNAME): Only names of faults up to 8 characters are supported. Will ignore excess characters."
|
||||
}
|
||||
},
|
||||
},
|
||||
},
|
||||
{
|
||||
"TRACER",
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user