Orion Events: Generate COMPORD for new wells

This commit is contained in:
Kristian Bendiksen
2026-08-20 11:02:55 +02:00
parent 0b7ce2252c
commit a362f868c3
4 changed files with 31 additions and 0 deletions
@@ -211,6 +211,9 @@ QString RicScheduleDataGenerator::generateDateSection( const RimWellEventTimelin
if ( auto welspecs = generateWelspecsForWell( timeline, eclipseCase, *well, date ) )
{
mergeKeyword( keywordBlocks, "WELSPECS", std::move( *welspecs ) );
mergeKeyword( keywordBlocks,
"COMPORD",
RimKeywordFactory::compordKeyword( well->completionSettings()->wellNameForExport().toStdString() ) );
}
generateCompletionsForWell( timeline, eclipseCase, *well, date, keywordBlocks );
@@ -104,6 +104,22 @@ Opm::DeckKeyword welspecsKeyword( const std::string wellGrpName, RimEclipseCase*
return kw;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
Opm::DeckKeyword compordKeyword( const std::string& wellName )
{
using C = Opm::ParserKeywords::COMPORD;
std::vector<Opm::DeckItem> items;
items.push_back( RifOpmDeckTools::item( C::WELL::itemName, wellName ) );
items.push_back( RifOpmDeckTools::item( C::ORDER_TYPE::itemName, "INPUT" ) );
Opm::DeckKeyword kw( ( C() ) );
kw.addRecord( Opm::DeckRecord{ std::move( items ) } );
return kw;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
@@ -56,6 +56,7 @@ namespace RimKeywordFactory
{
Opm::DeckKeyword welspecsKeyword( const std::string wellGrpName, RimEclipseCase* eCase, RimWellPath* wellPath );
Opm::DeckKeyword compordKeyword( const std::string& wellName );
Opm::DeckKeyword compdatKeyword( const std::vector<RigCompletionData>& compdata, const std::string wellName );
Opm::DeckKeyword wpimultKeyword( const std::vector<RigCompletionData>& compdata, const std::string wellName );
Opm::DeckKeyword complumpKeyword( const std::vector<RigCompletionData>& compdata, const std::string wellName );