118 lines
3.1 KiB
C++
118 lines
3.1 KiB
C++
/*
|
|
Copyright 2015 Statoil ASA.
|
|
|
|
This file is part of the Open Porous Media project (OPM).
|
|
|
|
OPM is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
OPM is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with OPM. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
#include <stdexcept>
|
|
|
|
#include <opm/parser/eclipse/EclipseState/Tables/ColumnSchema.hpp>
|
|
|
|
namespace Opm {
|
|
|
|
ColumnSchema::ColumnSchema(const std::string& name , Table::ColumnOrderEnum order , Table::DefaultAction defaultAction) :
|
|
m_name( name ),
|
|
m_order( order ),
|
|
m_defaultAction( defaultAction )
|
|
{
|
|
|
|
}
|
|
|
|
|
|
ColumnSchema::ColumnSchema(const std::string& name , Table::ColumnOrderEnum order , double defaultValue ) :
|
|
m_name( name ),
|
|
m_order( order ),
|
|
m_defaultAction( Table::DEFAULT_CONST ),
|
|
m_defaultValue( defaultValue )
|
|
{
|
|
}
|
|
|
|
const std::string& ColumnSchema::name() const {
|
|
return m_name;
|
|
}
|
|
|
|
|
|
bool ColumnSchema::validOrder( double value1 , double value2) const {
|
|
switch (m_order) {
|
|
case Table::RANDOM:
|
|
return true;
|
|
break;
|
|
case Table::INCREASING:
|
|
return (value2 >= value1);
|
|
break;
|
|
case Table::STRICTLY_INCREASING:
|
|
return (value2 > value1);
|
|
break;
|
|
case Table::DECREASING:
|
|
return (value2 <= value1);
|
|
break;
|
|
case Table::STRICTLY_DECREASING:
|
|
return (value2 < value1);
|
|
break;
|
|
default:
|
|
throw std::invalid_argument("Internal error - should not be here\n");
|
|
}
|
|
}
|
|
|
|
bool ColumnSchema::lookupValid( ) const {
|
|
if (m_order == Table::RANDOM)
|
|
return false;
|
|
else
|
|
return true;
|
|
}
|
|
|
|
|
|
bool ColumnSchema::acceptsDefault( ) const {
|
|
if (m_defaultAction == Table::DEFAULT_NONE)
|
|
return false;
|
|
else
|
|
return true;
|
|
}
|
|
|
|
|
|
bool ColumnSchema::isIncreasing( ) const {
|
|
if ((m_order == Table::INCREASING) || (m_order == Table::STRICTLY_INCREASING))
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
bool ColumnSchema::isDecreasing( ) const {
|
|
if ((m_order == Table::DECREASING) || (m_order == Table::STRICTLY_DECREASING))
|
|
return true;
|
|
else
|
|
return false;
|
|
}
|
|
|
|
|
|
Table::DefaultAction ColumnSchema::getDefaultMode( ) const {
|
|
return m_defaultAction;
|
|
}
|
|
|
|
|
|
double ColumnSchema::getDefaultValue( ) const {
|
|
if (m_defaultAction == Table::DEFAULT_CONST)
|
|
return m_defaultValue;
|
|
else
|
|
throw std::invalid_argument("Column must be configured with constant default when using this method");
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|