2012-05-18 02:45:23 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2014-09-23 08:04:57 -05:00
|
|
|
// Copyright (C) 2011- Statoil ASA
|
|
|
|
// Copyright (C) 2013- Ceetron Solutions AS
|
|
|
|
// Copyright (C) 2011-2012 Ceetron AS
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2012-05-18 02:45:23 -05: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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
2012-05-18 02:45:23 -05:00
|
|
|
// 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.
|
2019-09-06 03:40:57 -05:00
|
|
|
//
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2012-05-18 02:45:23 -05:00
|
|
|
// for more details.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2020-05-12 11:19:27 -05:00
|
|
|
#include "RigNncConnection.h"
|
2023-12-19 05:36:32 -06:00
|
|
|
#include "RigReservoirBuilder.h"
|
2020-05-12 11:19:27 -05:00
|
|
|
|
2012-05-18 02:45:23 -05:00
|
|
|
#include "cvfArray.h"
|
2019-09-06 03:40:57 -05:00
|
|
|
#include "cvfObject.h"
|
2012-05-18 02:45:23 -05:00
|
|
|
#include "cvfVector3.h"
|
2017-01-09 13:27:46 -06:00
|
|
|
|
2017-01-10 02:51:39 -06:00
|
|
|
class RigEclipseCaseData;
|
2017-01-09 13:27:46 -06:00
|
|
|
class RigMainGrid;
|
|
|
|
class RigGridBase;
|
|
|
|
class RigCell;
|
|
|
|
|
|
|
|
class QString;
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
class RigReservoirBuilderMock
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
RigReservoirBuilderMock();
|
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
void setWorldCoordinates( cvf::Vec3d minWorldCoordinate, cvf::Vec3d maxWorldCoordinate );
|
|
|
|
void setGridPointDimensions( const cvf::Vec3st& gridPointDimensions );
|
|
|
|
void setResultInfo( size_t resultCount, size_t timeStepCount );
|
|
|
|
void enableWellData( bool enableWellData );
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2023-12-19 05:36:32 -06:00
|
|
|
size_t resultCount() const { return m_resultCount; }
|
|
|
|
size_t timeStepCount() const { return m_timeStepCount; }
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
void addLocalGridRefinement( const cvf::Vec3st& minCellPosition,
|
|
|
|
const cvf::Vec3st& maxCellPosition,
|
|
|
|
const cvf::Vec3st& singleCellRefinementFactors );
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
void populateReservoir( RigEclipseCaseData* eclipseCase );
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2019-09-06 03:40:57 -05:00
|
|
|
bool inputProperty( RigEclipseCaseData* eclipseCase, const QString& propertyName, std::vector<double>* values );
|
|
|
|
bool staticResult( RigEclipseCaseData* eclipseCase, const QString& result, std::vector<double>* values );
|
2020-02-12 04:43:15 -06:00
|
|
|
bool dynamicResult( RigEclipseCaseData* eclipseCase, const QString& result, size_t stepIndex, std::vector<double>* values );
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
private:
|
2019-09-06 03:40:57 -05:00
|
|
|
void addFaults( RigEclipseCaseData* eclipseCase );
|
|
|
|
|
2023-02-26 03:48:40 -06:00
|
|
|
static void
|
2023-04-13 00:05:53 -05:00
|
|
|
addNnc( RigMainGrid* grid, size_t i1, size_t j1, size_t k1, size_t i2, size_t j2, size_t k2, RigConnectionContainer& nncConnections );
|
2023-12-19 05:36:32 -06:00
|
|
|
void addWellData( RigEclipseCaseData* eclipseCase, RigGridBase* grid );
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
private:
|
2023-12-19 05:36:32 -06:00
|
|
|
size_t m_resultCount;
|
|
|
|
size_t m_timeStepCount;
|
|
|
|
bool m_enableWellData;
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2023-12-19 05:36:32 -06:00
|
|
|
RigReservoirBuilder m_reservoirBuilder;
|
2012-05-18 02:45:23 -05:00
|
|
|
};
|