2017-10-05 02:29:19 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2017 Statoil 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 "RimWellLogCurve.h"
|
|
|
|
|
|
|
|
#include "RifEclipseRftAddress.h"
|
|
|
|
|
|
|
|
#include "cvfObject.h"
|
|
|
|
#include "cafPdmField.h"
|
|
|
|
#include "cafPdmPtrField.h"
|
|
|
|
|
|
|
|
class RimEclipseResultCase;
|
|
|
|
class RifReaderEclipseRft;
|
2017-10-05 03:49:26 -05:00
|
|
|
class RiuLineSegmentQwtPlotCurve;
|
2017-10-05 02:29:19 -05:00
|
|
|
//==================================================================================================
|
|
|
|
///
|
|
|
|
///
|
|
|
|
//==================================================================================================
|
|
|
|
class RimWellLogRftCurve : public RimWellLogCurve
|
|
|
|
{
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
|
|
|
|
public:
|
|
|
|
RimWellLogRftCurve();
|
|
|
|
virtual ~RimWellLogRftCurve();
|
|
|
|
|
|
|
|
virtual QString wellName() const override;
|
|
|
|
virtual QString wellLogChannelName() const override;
|
|
|
|
|
|
|
|
std::vector<double> xValues();
|
2017-10-05 03:49:26 -05:00
|
|
|
std::vector<double> depthValues();
|
2017-10-05 02:29:19 -05:00
|
|
|
|
|
|
|
int currentTimeStep() const;
|
|
|
|
|
|
|
|
void setEclipseResultCase(RimEclipseResultCase* eclipseResultCase);
|
|
|
|
RimEclipseResultCase* eclipseResultCase() const;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Overrides from RimWellLogPlotCurve
|
|
|
|
virtual QString createCurveAutoName() override;
|
|
|
|
virtual void onLoadDataAndUpdate(bool updateParentPlot) override;
|
|
|
|
|
|
|
|
virtual QList<caf::PdmOptionItemInfo> calculateValueOptions(const caf::PdmFieldHandle* fieldNeedingOptions, bool * useOptionsOnly);
|
|
|
|
|
|
|
|
private:
|
|
|
|
RifReaderEclipseRft* rftReader() const;
|
|
|
|
|
|
|
|
private:
|
2017-10-05 03:49:26 -05:00
|
|
|
RiuLineSegmentQwtPlotCurve* m_qwtPlotCurve;
|
|
|
|
|
2017-10-05 02:29:19 -05:00
|
|
|
caf::PdmPtrField<RimEclipseResultCase*> m_eclipseResultCase;
|
|
|
|
caf::PdmField<time_t> m_timeStep;
|
|
|
|
caf::PdmField<QString> m_wellName;
|
|
|
|
caf::PdmField<QString> m_wellLogChannelName;
|
|
|
|
};
|
|
|
|
|
|
|
|
|