mirror of
https://github.com/OPM/ResInsight.git
synced 2026-08-27 13:47:12 -05:00
Add a typed FILTER declaration to the ORIONEVENTS 2.0 grammar, e.g. FILTER POROPERM = "PORO > 0.4 AND PERMX > 100.0". A PERFORATION event references it with FILTER=POROPERM or supplies an inline quoted expression. When applied, each used filter is materialized as a case-level combined data filter (one property filter per term, one-sided inclusive bounds, AND/OR combine mode) and attached to the perforation. Unqualified result names are searched in STATIC_NATIVE, DYNAMIC_NATIVE then GENERATED results; a TYPE. qualifier restricts the search. Missing results raise before any event is applied. apply_orion_document gains an optional case= parameter defaulting to the project's first case. RimWellEventPerf carries a RimCellFilter ptr-field with scriptable AddFilter/cell_filter methods, and the filter is copied onto the RimPerforationInterval when the timeline materializes completions.
89 lines
2.8 KiB
C++
89 lines
2.8 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 "cafAppEnum.h"
|
|
#include "cafPdmField.h"
|
|
#include "cafPdmPtrField.h"
|
|
|
|
class RimCellFilter;
|
|
|
|
//==================================================================================================
|
|
///
|
|
/// Perforation event - defines when a perforation interval opens or closes
|
|
///
|
|
//==================================================================================================
|
|
class RimWellEventPerf : public RimWellEvent
|
|
{
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
public:
|
|
enum class State
|
|
{
|
|
OPEN,
|
|
SHUT
|
|
};
|
|
|
|
RimWellEventPerf();
|
|
~RimWellEventPerf() override;
|
|
|
|
// Getters
|
|
double startMD() const;
|
|
double endMD() const;
|
|
double diameter() const;
|
|
double skinFactor() const;
|
|
State state() const;
|
|
int completionNumber() const;
|
|
RimCellFilter* cellFilter() const;
|
|
|
|
// Setters
|
|
void setStartMD( double md );
|
|
void setEndMD( double md );
|
|
void setDiameter( double diameter );
|
|
void setSkinFactor( double skinFactor );
|
|
void setState( State state );
|
|
void setCompletionNumber( int completionNumber );
|
|
void setCellFilter( RimCellFilter* filter );
|
|
|
|
// Override from RimWellEvent
|
|
EventType eventType() const override;
|
|
QString generateScheduleKeyword( const QString& wellName ) const override;
|
|
|
|
protected:
|
|
void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override;
|
|
void defineUiTreeOrdering( caf::PdmUiTreeOrdering& uiTreeOrdering, QString uiConfigName = "" ) override;
|
|
|
|
private:
|
|
caf::PdmField<double> m_startMD;
|
|
caf::PdmField<double> m_endMD;
|
|
caf::PdmField<double> m_diameter;
|
|
caf::PdmField<double> m_skinFactor;
|
|
caf::PdmField<caf::AppEnum<State>> m_state;
|
|
caf::PdmField<int> m_completionNumber;
|
|
caf::PdmPtrField<RimCellFilter*> m_cellFilter;
|
|
};
|
|
|
|
namespace caf
|
|
{
|
|
template <>
|
|
void caf::AppEnum<RimWellEventPerf::State>::setUp();
|
|
} // namespace caf
|