Files
ResInsight/ApplicationLibCode/FileInterface/RifOpmDeckTools.cpp
T
Kristian Bendiksen d2e7bed6b8 Well Event: Emit RPTRST/RPTSCHED as proper mnemonic lists
Schedule-level keywords whose OPM ParserRecord is a single ALL-sized item
(RPTRST, RPTSCHED, ...) are not positional — they take a free-form list
of mnemonic tokens like `BASIC=2 DEN ROCKC NORST=1`. Previously each
`keyword_data` entry became its own DeckItem, and OPM emitted them
either as truncated positional values or as a quoted, space-collapsed
single string.

Detect that schema shape in `RifEventKeywordFormatter::formatKeyword`
and pack the user's entries into one RawString DeckItem of mnemonic
tokens: `KEY` for FLAG items, `KEY=VALUE` otherwise.

To distinguish flag mnemonics (`DEN`) from `KEY=1`-style entries, add a
new `FLAG` value to `RimWellEventKeywordItem::ItemType` plumbed end to
end (Python -> GRPC -> Rimc -> storage -> formatter). The Python API
now maps `bool True` to FLAG and silently drops `bool False`.

For positional keywords (WCONHIST etc.) FLAG items have no value to
emit and are rendered as default markers ("1*").

A `rawStringItem` helper is added to `RifOpmDeckTools` so the
mnemonic-list path can produce DeckItems whose OPM output is not
quoted.
2026-05-28 08:21:17 +02:00

174 lines
6.2 KiB
C++

/////////////////////////////////////////////////////////////////////////////////
//
// Copyright (C) 2025 Equinor ASA
//
// ResInsight 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.
//
// ResInsight 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 at <http://www.gnu.org/licenses/gpl.html>
// for more details.
//
/////////////////////////////////////////////////////////////////////////////////
#include "RifOpmDeckTools.h"
#include "opm/input/eclipse/Deck/DeckItem.hpp"
#include "opm/input/eclipse/Units/Dimension.hpp"
#include "opm/input/eclipse/Utility/Typetools.hpp"
namespace RifOpmDeckTools
{
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Opm::DeckItem item( std::string name, std::string value )
{
Opm::DeckItem item1( name, value );
item1.push_back( value );
return item1;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Opm::DeckItem optionalItem( std::string name, std::optional<std::string> value )
{
if ( value.has_value() )
{
return item( name, value.value() );
}
return defaultItem( name );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Opm::DeckItem item( std::string name, int value )
{
Opm::DeckItem item1( name, value );
item1.push_back( value );
return item1;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Opm::DeckItem optionalItem( std::string name, std::optional<int> value )
{
if ( value.has_value() )
{
return item( name, value.value() );
}
return defaultItem( name );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Opm::DeckItem item( std::string name, size_t value )
{
return item( name, (int)value );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Opm::DeckItem optionalItem( std::string name, std::optional<size_t> value )
{
if ( value.has_value() )
{
return item( name, value.value() );
}
return defaultItem( name );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Opm::DeckItem defaultItem( std::string name )
{
Opm::DeckItem item1( name, 0 );
item1.push_backDummyDefault<int>( 1 );
return item1;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Opm::DeckItem item( std::string name, double value )
{
std::vector<Opm::Dimension> active_dimensions;
std::vector<Opm::Dimension> default_dimensions;
Opm::DeckItem item1( name, double(), active_dimensions, default_dimensions );
item1.push_back( value );
return item1;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Opm::DeckItem optionalItem( std::string name, std::optional<double> value )
{
if ( value.has_value() )
{
return item( name, value.value() );
}
return defaultItem( name );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Opm::DeckItem optionalItem( std::string name, std::optional<float> value )
{
if ( value.has_value() )
{
return item( name, (double)value.value() );
}
return defaultItem( name );
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Opm::DeckItem item( std::string name, std::set<std::string> values )
{
Opm::DeckItem item1( name, "" );
for ( const auto& value : values )
item1.push_back( value );
return item1;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Opm::DeckItem item( std::string name, std::vector<std::string> values )
{
Opm::DeckItem item1( name, "" );
for ( const auto& value : values )
item1.push_back( value );
return item1;
}
//--------------------------------------------------------------------------------------------------
/// Raw-string DeckItem: emitted by OPM DeckOutput without surrounding quotes.
/// Used for free-form mnemonic lists (e.g. RPTRST tokens like "BASIC=2", "DEN").
//--------------------------------------------------------------------------------------------------
Opm::DeckItem rawStringItem( std::string name, std::vector<std::string> values )
{
Opm::DeckItem item1( name, Opm::RawString{} );
for ( const auto& value : values )
item1.push_back( Opm::RawString{ value } );
return item1;
}
} // namespace RifOpmDeckTools