PVTO: Relax Requirement that Saturated FVF be Strictly Increasing

Such cases do happen in real field models and we should diagnose the
existence of non-increasing BO as a function of RS, but we should
not terminate the simulation run.
This commit is contained in:
Bård Skaflestad
2020-09-18 09:42:37 +02:00
parent 1311afb261
commit db07a19c68

View File

@@ -174,7 +174,7 @@ PvtoTable::PvtoTable( const DeckKeyword& keyword, size_t tableIdx) :
m_saturatedSchema.addColumn( ColumnSchema( "RS" , Table::STRICTLY_INCREASING , Table::DEFAULT_NONE ));
m_saturatedSchema.addColumn( ColumnSchema( "P" , Table::RANDOM , Table::DEFAULT_NONE ));
m_saturatedSchema.addColumn( ColumnSchema( "BO" , Table::STRICTLY_INCREASING, Table::DEFAULT_LINEAR ));
m_saturatedSchema.addColumn( ColumnSchema( "BO" , Table::RANDOM , Table::DEFAULT_LINEAR ));
m_saturatedSchema.addColumn( ColumnSchema( "MU" , Table::RANDOM , Table::DEFAULT_LINEAR ));
PvtxTable::init(keyword , tableIdx);