Files
ResInsight/ApplicationLibCode/ProjectDataModel/WellEvents/RimKeywordEvent.h
T
Kristian Bendiksen 6ef024cee9 #14063 Well Event: Group records of same keyword across wells
The schedule generator previously concatenated full keyword blocks
(`KEYWORD ... /\n/\n`) — one per well — producing verbose output where
each WELSPECS / COMPDAT / WCONHIST / WELSEGS / COMPSEGS / etc. block
appeared once per contributing well. Eclipse keywords are designed to
hold multiple records under a single header; the per-well repetition is
syntactically valid but bloats the file and obscures intent.

Switch `RicScheduleDataGenerator` to accumulate
`std::map<QString, Opm::DeckKeyword>` instead of raw concatenated text.
Each per-well helper now returns an `Opm::DeckKeyword`, and a new
`mergeKeyword` primitive appends its records into the accumulator entry,
creating the entry from the helper's keyword on first encounter. At
emission time each accumulated keyword is serialised once.

To support this, `RifEventKeywordFormatter` is split: each `format*`
QString function now wraps a corresponding `build*` function that
returns `std::optional<Opm::DeckKeyword>`. `RimWellEventKeyword` and
`RimKeywordEvent` expose a parallel `generateDeckKeyword` accessor.
The text-scraping `extractKeywordName` helper becomes dead code and is
removed.
2026-05-28 08:21:17 +02:00

72 lines
2.5 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.
//
/////////////////////////////////////////////////////////////////////////////////
#pragma once
#include "RimWellEvent.h"
#include "cafPdmField.h"
#include <optional>
#include <vector>
namespace Opm
{
class DeckKeyword;
} // namespace Opm
//==================================================================================================
///
/// Schedule-level keyword event - represents a schedule keyword with arbitrary keyword items
/// that is NOT tied to a specific well path (e.g., RPTRST, GRUPTREE, RPTSCHED)
///
//==================================================================================================
class RimKeywordEvent : public RimWellEvent
{
CAF_PDM_HEADER_INIT;
public:
RimKeywordEvent();
~RimKeywordEvent() override;
// Keyword management
QString keywordName() const;
void setKeywordName( const QString& keyword );
// Item management
void addStringItem( const QString& name, const QString& value );
void addIntItem( const QString& name, int value );
void addDoubleItem( const QString& name, double value );
void addFlagItem( const QString& name );
std::vector<class RimWellEventKeywordItem*> items() const;
// Override from RimWellEvent
EventType eventType() const override { return EventType::SCHEDULE_KEYWORD; }
QString generateScheduleKeyword( const QString& wellName ) const override;
std::optional<Opm::DeckKeyword> generateDeckKeyword( const QString& wellName ) const;
protected:
void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override;
void defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering, QString uiConfigName = "" ) override;
private:
caf::PdmField<QString> m_keywordName;
caf::PdmChildArrayField<class RimWellEventKeywordItem*> m_items;
};