mirror of
https://github.com/OPM/opm-simulators.git
synced 2025-02-25 18:55:30 -06:00
Warn about about long fault -name
This commit is contained in:
parent
e14823c6d8
commit
ebb8fc7aae
@ -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