2012-05-18 09:45:23 +02:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
2014-09-23 15:04:57 +02:00
|
|
|
// Copyright (C) 2011- Statoil ASA
|
|
|
|
|
// Copyright (C) 2013- Ceetron Solutions AS
|
|
|
|
|
// Copyright (C) 2011-2012 Ceetron AS
|
2012-05-18 09:45:23 +02:00
|
|
|
//
|
|
|
|
|
// 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
|
|
|
|
|
|
2015-05-15 09:16:33 +02:00
|
|
|
#include "RimEclipseCase.h"
|
2012-05-18 09:45:23 +02:00
|
|
|
|
2013-02-27 15:27:33 +01:00
|
|
|
class RifReaderInterface;
|
|
|
|
|
class RigMainGrid;
|
2012-05-18 09:45:23 +02:00
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
|
//
|
2012-06-26 16:10:41 +02:00
|
|
|
//
|
2012-05-18 09:45:23 +02:00
|
|
|
//
|
|
|
|
|
//==================================================================================================
|
2015-06-25 11:56:18 +02:00
|
|
|
class RimEclipseResultCase : public RimEclipseCase
|
2012-05-18 09:45:23 +02:00
|
|
|
{
|
2012-06-26 16:10:41 +02:00
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
|
|
2012-05-18 09:45:23 +02:00
|
|
|
public:
|
2015-06-25 11:56:18 +02:00
|
|
|
RimEclipseResultCase();
|
|
|
|
|
virtual ~RimEclipseResultCase();
|
2012-05-18 09:45:23 +02:00
|
|
|
|
2013-12-02 08:55:13 +01:00
|
|
|
void setGridFileName(const QString& caseFileName);
|
2013-04-11 12:06:38 +02:00
|
|
|
void setCaseInfo(const QString& userDescription, const QString& caseFileName);
|
2013-04-08 14:29:43 +02:00
|
|
|
|
2012-06-26 16:10:41 +02:00
|
|
|
virtual bool openEclipseGridFile();
|
2013-03-22 15:43:42 +01:00
|
|
|
bool openAndReadActiveCellData(RigCaseData* mainEclipseCase);
|
2013-04-07 17:20:58 +02:00
|
|
|
void readGridDimensions(std::vector< std::vector<int> >& gridDimensions);
|
2012-05-18 09:45:23 +02:00
|
|
|
|
2013-04-08 12:01:40 +02:00
|
|
|
// Overrides from RimCase
|
2013-04-08 08:36:34 +02:00
|
|
|
virtual QString locationOnDisc() const;
|
2013-04-11 12:06:38 +02:00
|
|
|
virtual QString gridFileName() const { return caseFileName();}
|
2013-04-12 08:31:59 +02:00
|
|
|
virtual void updateFilePathsFromProjectPath(const QString& newProjectPath, const QString& oldProjectPath);
|
2012-05-18 09:45:23 +02:00
|
|
|
|
|
|
|
|
private:
|
2013-04-08 08:36:34 +02:00
|
|
|
cvf::ref<RifReaderInterface> createMockModel(QString modelName);
|
2013-04-11 12:06:38 +02:00
|
|
|
|
|
|
|
|
virtual void initAfterRead();
|
|
|
|
|
|
2013-06-26 09:02:37 +02:00
|
|
|
virtual void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering );
|
|
|
|
|
|
2013-04-11 12:06:38 +02:00
|
|
|
// Fields:
|
|
|
|
|
caf::PdmField<QString> caseFileName;
|
|
|
|
|
|
|
|
|
|
// Obsolete field
|
|
|
|
|
caf::PdmField<QString> caseDirectory;
|
|
|
|
|
|
2013-04-12 12:03:04 +02:00
|
|
|
bool m_gridAndWellDataIsReadFromFile;
|
|
|
|
|
bool m_activeCellInfoIsReadFromFile;
|
2012-05-18 09:45:23 +02:00
|
|
|
};
|