mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
#1069 : pre-proto - Added empty files related to RigFracture
This commit is contained in:
parent
b6053147df
commit
db3f7d6650
@ -20,6 +20,7 @@ ${CEE_CURRENT_LIST_DIR}RifReaderMockModel.h
|
|||||||
${CEE_CURRENT_LIST_DIR}RifReaderSettings.h
|
${CEE_CURRENT_LIST_DIR}RifReaderSettings.h
|
||||||
${CEE_CURRENT_LIST_DIR}RifEclipseSummaryAddress.h
|
${CEE_CURRENT_LIST_DIR}RifEclipseSummaryAddress.h
|
||||||
${CEE_CURRENT_LIST_DIR}RifReaderOpmParserInput.h
|
${CEE_CURRENT_LIST_DIR}RifReaderOpmParserInput.h
|
||||||
|
${CEE_CURRENT_LIST_DIR}RifEclipseWellCompletionExporter.h
|
||||||
)
|
)
|
||||||
|
|
||||||
set (SOURCE_GROUP_SOURCE_FILES
|
set (SOURCE_GROUP_SOURCE_FILES
|
||||||
@ -38,6 +39,7 @@ ${CEE_CURRENT_LIST_DIR}RifReaderMockModel.cpp
|
|||||||
${CEE_CURRENT_LIST_DIR}RifReaderSettings.cpp
|
${CEE_CURRENT_LIST_DIR}RifReaderSettings.cpp
|
||||||
${CEE_CURRENT_LIST_DIR}RifEclipseSummaryAddress.cpp
|
${CEE_CURRENT_LIST_DIR}RifEclipseSummaryAddress.cpp
|
||||||
${CEE_CURRENT_LIST_DIR}RifReaderOpmParserInput.cpp
|
${CEE_CURRENT_LIST_DIR}RifReaderOpmParserInput.cpp
|
||||||
|
${CEE_CURRENT_LIST_DIR}RifEclipseWellCompletionExporter.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
list(APPEND CODE_HEADER_FILES
|
list(APPEND CODE_HEADER_FILES
|
||||||
|
@ -0,0 +1,29 @@
|
|||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// 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.
|
||||||
|
//
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "RifEclipseWellCompletionExporter.h"
|
||||||
|
|
||||||
|
#include "RimFracture.h"
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
void RifEclipseWellCompletionExporter::exportWellCompletions(const QString& filename, const std::vector<RimFracture*>& fractures)
|
||||||
|
{
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,36 @@
|
|||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// 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 <vector>
|
||||||
|
|
||||||
|
class RimFracture;
|
||||||
|
|
||||||
|
class QString;
|
||||||
|
|
||||||
|
|
||||||
|
//==================================================================================================
|
||||||
|
//
|
||||||
|
//
|
||||||
|
//==================================================================================================
|
||||||
|
class RifEclipseWellCompletionExporter
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
static void exportWellCompletions(const QString& filename, const std::vector<RimFracture*>& fractures);
|
||||||
|
};
|
@ -86,6 +86,7 @@ ${CEE_CURRENT_LIST_DIR}RimIntersectionBox.h
|
|||||||
${CEE_CURRENT_LIST_DIR}RimMultiSnapshotDefinition.h
|
${CEE_CURRENT_LIST_DIR}RimMultiSnapshotDefinition.h
|
||||||
${CEE_CURRENT_LIST_DIR}RimFractureDefinition.h
|
${CEE_CURRENT_LIST_DIR}RimFractureDefinition.h
|
||||||
${CEE_CURRENT_LIST_DIR}RimFractureDefinitionCollection.h
|
${CEE_CURRENT_LIST_DIR}RimFractureDefinitionCollection.h
|
||||||
|
${CEE_CURRENT_LIST_DIR}RimFracture.h
|
||||||
${CEE_CURRENT_LIST_DIR}RimWellPathFracture.h
|
${CEE_CURRENT_LIST_DIR}RimWellPathFracture.h
|
||||||
${CEE_CURRENT_LIST_DIR}RimWellPathFractureCollection.h
|
${CEE_CURRENT_LIST_DIR}RimWellPathFractureCollection.h
|
||||||
${CEE_CURRENT_LIST_DIR}RimSimWellFracture.h
|
${CEE_CURRENT_LIST_DIR}RimSimWellFracture.h
|
||||||
@ -175,6 +176,7 @@ ${CEE_CURRENT_LIST_DIR}RimIntersectionBox.cpp
|
|||||||
${CEE_CURRENT_LIST_DIR}RimMultiSnapshotDefinition.cpp
|
${CEE_CURRENT_LIST_DIR}RimMultiSnapshotDefinition.cpp
|
||||||
${CEE_CURRENT_LIST_DIR}RimFractureDefinition.cpp
|
${CEE_CURRENT_LIST_DIR}RimFractureDefinition.cpp
|
||||||
${CEE_CURRENT_LIST_DIR}RimFractureDefinitionCollection.cpp
|
${CEE_CURRENT_LIST_DIR}RimFractureDefinitionCollection.cpp
|
||||||
|
${CEE_CURRENT_LIST_DIR}RimFracture.cpp
|
||||||
${CEE_CURRENT_LIST_DIR}RimWellPathFracture.cpp
|
${CEE_CURRENT_LIST_DIR}RimWellPathFracture.cpp
|
||||||
${CEE_CURRENT_LIST_DIR}RimWellPathFractureCollection.cpp
|
${CEE_CURRENT_LIST_DIR}RimWellPathFractureCollection.cpp
|
||||||
${CEE_CURRENT_LIST_DIR}RimSimWellFracture.cpp
|
${CEE_CURRENT_LIST_DIR}RimSimWellFracture.cpp
|
||||||
|
41
ApplicationCode/ProjectDataModel/RimFracture.cpp
Normal file
41
ApplicationCode/ProjectDataModel/RimFracture.cpp
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// 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.
|
||||||
|
//
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "RimFracture.h"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
CAF_PDM_SOURCE_INIT(RimFracture, "Fracture");
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
RimFracture::RimFracture(void)
|
||||||
|
{
|
||||||
|
CAF_PDM_InitObject("Fracture", "", "", "");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
RimFracture::~RimFracture()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
45
ApplicationCode/ProjectDataModel/RimFracture.h
Normal file
45
ApplicationCode/ProjectDataModel/RimFracture.h
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// 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 "cafPdmObject.h"
|
||||||
|
|
||||||
|
/*
|
||||||
|
#include "cafAppEnum.h"
|
||||||
|
#include "cafPdmField.h"
|
||||||
|
#include "cafPdmObject.h"
|
||||||
|
#include "cafPdmPtrField.h"
|
||||||
|
#include "RimView.h"
|
||||||
|
#include "cvfVector3.h"
|
||||||
|
*/
|
||||||
|
|
||||||
|
|
||||||
|
//==================================================================================================
|
||||||
|
///
|
||||||
|
///
|
||||||
|
//==================================================================================================
|
||||||
|
class RimFracture : public caf::PdmObject
|
||||||
|
{
|
||||||
|
CAF_PDM_HEADER_INIT;
|
||||||
|
|
||||||
|
public:
|
||||||
|
RimFracture(void);
|
||||||
|
virtual ~RimFracture(void);
|
||||||
|
|
||||||
|
};
|
@ -25,13 +25,15 @@
|
|||||||
#include "RimView.h"
|
#include "RimView.h"
|
||||||
#include "cvfVector3.h"
|
#include "cvfVector3.h"
|
||||||
|
|
||||||
|
#include "RimFracture.h"
|
||||||
|
|
||||||
class RimFractureDefinition;
|
class RimFractureDefinition;
|
||||||
|
|
||||||
//==================================================================================================
|
//==================================================================================================
|
||||||
///
|
///
|
||||||
///
|
///
|
||||||
//==================================================================================================
|
//==================================================================================================
|
||||||
class RimSimWellFracture : public caf::PdmObject
|
class RimSimWellFracture : public RimFracture
|
||||||
{
|
{
|
||||||
CAF_PDM_HEADER_INIT;
|
CAF_PDM_HEADER_INIT;
|
||||||
|
|
||||||
|
@ -25,6 +25,8 @@
|
|||||||
#include "RimView.h"
|
#include "RimView.h"
|
||||||
#include "cvfVector3.h"
|
#include "cvfVector3.h"
|
||||||
|
|
||||||
|
#include "RimFracture.h"
|
||||||
|
|
||||||
class RimFractureDefinition;
|
class RimFractureDefinition;
|
||||||
class RimWellPath;
|
class RimWellPath;
|
||||||
|
|
||||||
@ -32,7 +34,7 @@ class RimWellPath;
|
|||||||
///
|
///
|
||||||
///
|
///
|
||||||
//==================================================================================================
|
//==================================================================================================
|
||||||
class RimWellPathFracture : public caf::PdmObject
|
class RimWellPathFracture : public RimFracture
|
||||||
{
|
{
|
||||||
CAF_PDM_HEADER_INIT;
|
CAF_PDM_HEADER_INIT;
|
||||||
|
|
||||||
|
@ -49,6 +49,7 @@ ${CEE_CURRENT_LIST_DIR}RigTimeHistoryResultAccessor.h
|
|||||||
${CEE_CURRENT_LIST_DIR}RigCurveDataTools.h
|
${CEE_CURRENT_LIST_DIR}RigCurveDataTools.h
|
||||||
${CEE_CURRENT_LIST_DIR}RigSummaryCaseData.h
|
${CEE_CURRENT_LIST_DIR}RigSummaryCaseData.h
|
||||||
${CEE_CURRENT_LIST_DIR}RigLasFileExporter.h
|
${CEE_CURRENT_LIST_DIR}RigLasFileExporter.h
|
||||||
|
${CEE_CURRENT_LIST_DIR}RigFracture.h
|
||||||
)
|
)
|
||||||
|
|
||||||
set (SOURCE_GROUP_SOURCE_FILES
|
set (SOURCE_GROUP_SOURCE_FILES
|
||||||
@ -91,6 +92,7 @@ ${CEE_CURRENT_LIST_DIR}RigTimeHistoryResultAccessor.cpp
|
|||||||
${CEE_CURRENT_LIST_DIR}RigCurveDataTools.cpp
|
${CEE_CURRENT_LIST_DIR}RigCurveDataTools.cpp
|
||||||
${CEE_CURRENT_LIST_DIR}RigSummaryCaseData.cpp
|
${CEE_CURRENT_LIST_DIR}RigSummaryCaseData.cpp
|
||||||
${CEE_CURRENT_LIST_DIR}RigLasFileExporter.cpp
|
${CEE_CURRENT_LIST_DIR}RigLasFileExporter.cpp
|
||||||
|
${CEE_CURRENT_LIST_DIR}RigFracture.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
list(APPEND CODE_HEADER_FILES
|
list(APPEND CODE_HEADER_FILES
|
||||||
|
27
ApplicationCode/ReservoirDataModel/RigFracture.cpp
Normal file
27
ApplicationCode/ReservoirDataModel/RigFracture.cpp
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// 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.
|
||||||
|
//
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#include "RigFracture.h"
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
RigFracture::RigFracture()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
39
ApplicationCode/ReservoirDataModel/RigFracture.h
Normal file
39
ApplicationCode/ReservoirDataModel/RigFracture.h
Normal file
@ -0,0 +1,39 @@
|
|||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// 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 "cvfBase.h"
|
||||||
|
#include "cvfObject.h"
|
||||||
|
#include "cvfMath.h"
|
||||||
|
#include "cvfVector3.h"
|
||||||
|
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
|
||||||
|
//==================================================================================================
|
||||||
|
///
|
||||||
|
//==================================================================================================
|
||||||
|
class RigFracture : public cvf::Object
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
RigFracture();
|
||||||
|
|
||||||
|
|
||||||
|
private:
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user