Flag NETBALAN as partially supported.

This commit is contained in:
Atgeirr Flø Rasmussen 2022-09-28 17:38:41 +02:00
parent 67b95afdd9
commit 2542f0c549
2 changed files with 16 additions and 1 deletions

View File

@ -381,6 +381,12 @@ partiallySupported()
{13,{false, allow_values<int> {10}, "MESSAGES(PRTGRPMS): option is not supported will continue"}}, // GROUP_PRINT_LIMIT
},
},
{
"NETBALAN",
{
{5,{false, allow_values<int> {10}, "NETBALAN(THPMXITE): option is not supported will continue"}}, // MAX_ITER_THP
},
},
{
"NETWORK",
{
@ -579,6 +585,16 @@ partiallySupported()
{3,{false, allow_values<double> {}, "MULTFLT(FLT-DIF): the diffusivity multiplier option is not supported will continue"}}, // NOT_DEFINED
},
},
{
"NETBALAN",
{
{1,{true, [](const double value) { return value <= 0.0; }, "NETBALAN(NSTEP): only negative values or 0 supported will stop"}}, // TIME_INTERVAL
{4,{false, allow_values<double> {0.01}, "NETBALAN(GRPCNV): not supported will continue"}}, // THP_CONVERGENCE_LIMIT
{6,{false, allow_values<double> {1e20}, "NETBALAN(NTRGERR): not supported will continue"}}, // TARGET_BALANCE_ERROR
{7,{false, allow_values<double> {1e20}, "NETBALAN(NMAXERR): not supported will continue"}}, // MAX_BALANCE_ERROR
{8,{false, allow_values<double> {}, "NETBALAN(NTSMIN): not supported will continue"}}, // MIN_TIME_STEP
},
},
{
"NNC",
{

View File

@ -398,7 +398,6 @@ const KeywordValidation::UnsupportedKeywords& unsupportedKeywords()
{"NARROW", {false, std::nullopt}},
{"NCONSUMP", {false, std::nullopt}},
{"NEFAC", {false, std::nullopt}},
{"NETBALAN", {false, std::nullopt}},
{"NETCOMPA", {false, std::nullopt}},
{"NEXT", {false, std::nullopt}},
{"NEXTSTPL", {false, std::nullopt}},