mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-14 01:13:52 -06:00
1306 lines
53 KiB
C++
1306 lines
53 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2011-2012 Statoil ASA, Ceetron AS
|
|
//
|
|
// 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 "cvfBase.h"
|
|
|
|
#include "RigMainGrid.h"
|
|
#include "RigCaseData.h"
|
|
#include "RigCaseCellResultsData.h"
|
|
|
|
#include "RifReaderEclipseOutput.h"
|
|
#include "RifEclipseOutputFileTools.h"
|
|
#include "RifEclipseUnifiedRestartFileAccess.h"
|
|
#include "RifEclipseRestartFilesetAccess.h"
|
|
#include "RifReaderInterface.h"
|
|
|
|
#include <iostream>
|
|
|
|
#include "ecl_grid.h"
|
|
#include "well_state.h"
|
|
#include "ecl_kw_magic.h"
|
|
|
|
#include "cafProgressInfo.h"
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// ECLIPSE cell numbering layout:
|
|
/// Lower layer: Upper layer
|
|
///
|
|
/// 2---3 6---7
|
|
/// | | | |
|
|
/// 0---1 4---5
|
|
///
|
|
///
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
// The indexing conventions for vertices in ECLIPSE
|
|
//
|
|
// 6-------------7
|
|
// /| /|
|
|
// / | / |
|
|
// / | / |
|
|
// 4-------------5 |
|
|
// | | | |
|
|
// | 2---------|---3
|
|
// | / | /
|
|
// | / | /
|
|
// |/ |/
|
|
// 0-------------1
|
|
// vertex indices
|
|
//
|
|
// The indexing conventions for vertices in ResInsight
|
|
//
|
|
// 7-------------6 |k
|
|
// /| /| | /j
|
|
// / | / | |/
|
|
// / | / | *---i
|
|
// 4-------------5 |
|
|
// | | | |
|
|
// | 3---------|---2
|
|
// | / | /
|
|
// | / | /
|
|
// |/ |/
|
|
// 0-------------1
|
|
// vertex indices
|
|
//
|
|
|
|
static const size_t cellMappingECLRi[8] = { 0, 1, 3, 2, 4, 5, 7, 6 };
|
|
|
|
|
|
//**************************************************************************************************
|
|
// Static functions
|
|
//**************************************************************************************************
|
|
|
|
bool transferGridCellData(RigMainGrid* mainGrid, RigActiveCellInfo* activeCellInfo, RigActiveCellInfo* fractureActiveCellInfo, RigGridBase* localGrid, const ecl_grid_type* localEclGrid, size_t matrixActiveStartIndex, size_t fractureActiveStartIndex)
|
|
{
|
|
CVF_ASSERT(activeCellInfo && fractureActiveCellInfo);
|
|
|
|
int cellCount = ecl_grid_get_global_size(localEclGrid);
|
|
size_t cellStartIndex = mainGrid->cells().size();
|
|
size_t nodeStartIndex = mainGrid->nodes().size();
|
|
|
|
RigCell defaultCell;
|
|
defaultCell.setHostGrid(localGrid);
|
|
mainGrid->cells().resize(cellStartIndex + cellCount, defaultCell);
|
|
|
|
mainGrid->nodes().resize(nodeStartIndex + cellCount*8, cvf::Vec3d(0,0,0));
|
|
|
|
int progTicks = 100;
|
|
double cellsPrProgressTick = cellCount/(float)progTicks;
|
|
caf::ProgressInfo progInfo(progTicks, "");
|
|
size_t computedCellCount = 0;
|
|
// Loop over cells and fill them with data
|
|
|
|
#pragma omp parallel for
|
|
for (int localCellIdx = 0; localCellIdx < cellCount; ++localCellIdx)
|
|
{
|
|
RigCell& cell = mainGrid->cells()[cellStartIndex + localCellIdx];
|
|
|
|
bool invalid = ecl_grid_cell_invalid1(localEclGrid, localCellIdx);
|
|
cell.setInvalid(invalid);
|
|
cell.setCellIndex(localCellIdx);
|
|
|
|
// Active cell index
|
|
|
|
int matrixActiveIndex = ecl_grid_get_active_index1(localEclGrid, localCellIdx);
|
|
if (matrixActiveIndex != -1)
|
|
{
|
|
activeCellInfo->setCellResultIndex(cellStartIndex + localCellIdx, matrixActiveStartIndex + matrixActiveIndex);
|
|
}
|
|
|
|
int fractureActiveIndex = ecl_grid_get_active_fracture_index1(localEclGrid, localCellIdx);
|
|
if (fractureActiveIndex != -1)
|
|
{
|
|
fractureActiveCellInfo->setCellResultIndex(cellStartIndex + localCellIdx, fractureActiveStartIndex + fractureActiveIndex);
|
|
}
|
|
|
|
// Parent cell index
|
|
|
|
int parentCellIndex = ecl_grid_get_parent_cell1(localEclGrid, localCellIdx);
|
|
if (parentCellIndex == -1)
|
|
{
|
|
cell.setParentCellIndex(cvf::UNDEFINED_SIZE_T);
|
|
}
|
|
else
|
|
{
|
|
cell.setParentCellIndex(parentCellIndex);
|
|
}
|
|
|
|
// Corner coordinates
|
|
int cIdx;
|
|
for (cIdx = 0; cIdx < 8; ++cIdx)
|
|
{
|
|
double * point = mainGrid->nodes()[nodeStartIndex + localCellIdx * 8 + cellMappingECLRi[cIdx]].ptr();
|
|
ecl_grid_get_corner_xyz1(localEclGrid, localCellIdx, cIdx, &(point[0]), &(point[1]), &(point[2]));
|
|
point[2] = -point[2];
|
|
cell.cornerIndices()[cIdx] = nodeStartIndex + localCellIdx*8 + cIdx;
|
|
}
|
|
|
|
// Sub grid in cell
|
|
const ecl_grid_type* subGrid = ecl_grid_get_cell_lgr1(localEclGrid, localCellIdx);
|
|
if (subGrid != NULL)
|
|
{
|
|
int subGridFileIndex = ecl_grid_get_grid_nr(subGrid);
|
|
CVF_ASSERT(subGridFileIndex > 0);
|
|
cell.setSubGrid(static_cast<RigLocalGrid*>(mainGrid->gridByIndex(subGridFileIndex)));
|
|
}
|
|
|
|
// Mark inactive long pyramid looking cells as invalid
|
|
// Forslag
|
|
//if (!invalid && (cell.isInCoarseCell() || (!cell.isActiveInMatrixModel() && !cell.isActiveInFractureModel()) ) )
|
|
if (!invalid)
|
|
{
|
|
cell.setInvalid(cell.isLongPyramidCell());
|
|
}
|
|
|
|
#pragma omp atomic
|
|
computedCellCount++;
|
|
|
|
progInfo.setProgress((int)(computedCellCount/cellsPrProgressTick));
|
|
}
|
|
return true;
|
|
}
|
|
|
|
//==================================================================================================
|
|
//
|
|
// Class RigReaderInterfaceECL
|
|
//
|
|
//==================================================================================================
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Constructor
|
|
//--------------------------------------------------------------------------------------------------
|
|
RifReaderEclipseOutput::RifReaderEclipseOutput()
|
|
{
|
|
m_fileName.clear();
|
|
m_filesWithSameBaseName.clear();
|
|
|
|
m_timeSteps.clear();
|
|
|
|
m_eclipseCase = NULL;
|
|
|
|
m_ecl_init_file = NULL;
|
|
m_dynamicResultsAccess = NULL;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Destructor
|
|
//--------------------------------------------------------------------------------------------------
|
|
RifReaderEclipseOutput::~RifReaderEclipseOutput()
|
|
{
|
|
close();
|
|
|
|
if (m_ecl_init_file)
|
|
{
|
|
ecl_file_close(m_ecl_init_file);
|
|
}
|
|
m_ecl_init_file = NULL;
|
|
|
|
if (m_dynamicResultsAccess.notNull())
|
|
{
|
|
m_dynamicResultsAccess->close();
|
|
}
|
|
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Close interface (for now, no files are kept open after calling methods, so just clear members)
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RifReaderEclipseOutput::close()
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Read geometry from file given by name into given reservoir object
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RifReaderEclipseOutput::transferGeometry(const ecl_grid_type* mainEclGrid, RigCaseData* eclipseCase)
|
|
{
|
|
CVF_ASSERT(eclipseCase);
|
|
|
|
if (!mainEclGrid)
|
|
{
|
|
// Some error
|
|
return false;
|
|
}
|
|
|
|
RigActiveCellInfo* activeCellInfo = eclipseCase->activeCellInfo(RifReaderInterface::MATRIX_RESULTS);
|
|
RigActiveCellInfo* fractureActiveCellInfo = eclipseCase->activeCellInfo(RifReaderInterface::FRACTURE_RESULTS);
|
|
|
|
CVF_ASSERT(activeCellInfo && fractureActiveCellInfo);
|
|
|
|
RigMainGrid* mainGrid = eclipseCase->mainGrid();
|
|
{
|
|
cvf::Vec3st gridPointDim(0,0,0);
|
|
gridPointDim.x() = ecl_grid_get_nx(mainEclGrid) + 1;
|
|
gridPointDim.y() = ecl_grid_get_ny(mainEclGrid) + 1;
|
|
gridPointDim.z() = ecl_grid_get_nz(mainEclGrid) + 1;
|
|
mainGrid->setGridPointDimensions(gridPointDim);
|
|
}
|
|
|
|
// Get and set grid and lgr metadata
|
|
|
|
size_t totalCellCount = static_cast<size_t>(ecl_grid_get_global_size(mainEclGrid));
|
|
|
|
int numLGRs = ecl_grid_get_num_lgr(mainEclGrid);
|
|
int lgrIdx;
|
|
for (lgrIdx = 0; lgrIdx < numLGRs; ++lgrIdx)
|
|
{
|
|
ecl_grid_type* localEclGrid = ecl_grid_iget_lgr(mainEclGrid, lgrIdx);
|
|
|
|
std::string lgrName = ecl_grid_get_name(localEclGrid);
|
|
cvf::Vec3st gridPointDim(0,0,0);
|
|
gridPointDim.x() = ecl_grid_get_nx(localEclGrid) + 1;
|
|
gridPointDim.y() = ecl_grid_get_ny(localEclGrid) + 1;
|
|
gridPointDim.z() = ecl_grid_get_nz(localEclGrid) + 1;
|
|
|
|
RigLocalGrid* localGrid = new RigLocalGrid(mainGrid);
|
|
mainGrid->addLocalGrid(localGrid);
|
|
|
|
localGrid->setIndexToStartOfCells(totalCellCount);
|
|
localGrid->setGridName(lgrName);
|
|
localGrid->setGridPointDimensions(gridPointDim);
|
|
|
|
totalCellCount += ecl_grid_get_global_size(localEclGrid);
|
|
}
|
|
|
|
activeCellInfo->setGlobalCellCount(totalCellCount);
|
|
fractureActiveCellInfo->setGlobalCellCount(totalCellCount);
|
|
|
|
// Reserve room for the cells and nodes and fill them with data
|
|
|
|
mainGrid->cells().reserve(totalCellCount);
|
|
mainGrid->nodes().reserve(8*totalCellCount);
|
|
|
|
caf::ProgressInfo progInfo(3 + numLGRs, "");
|
|
progInfo.setProgressDescription("Main Grid");
|
|
progInfo.setNextProgressIncrement(3);
|
|
|
|
transferGridCellData(mainGrid, activeCellInfo, fractureActiveCellInfo, mainGrid, mainEclGrid, 0, 0);
|
|
|
|
progInfo.setProgress(3);
|
|
|
|
size_t globalMatrixActiveSize = ecl_grid_get_nactive(mainEclGrid);
|
|
size_t globalFractureActiveSize = ecl_grid_get_nactive_fracture(mainEclGrid);
|
|
|
|
activeCellInfo->setGridCount(1 + numLGRs);
|
|
fractureActiveCellInfo->setGridCount(1 + numLGRs);
|
|
|
|
activeCellInfo->setGridActiveCellCounts(0, globalMatrixActiveSize);
|
|
fractureActiveCellInfo->setGridActiveCellCounts(0, globalFractureActiveSize);
|
|
|
|
transferCoarseningInfo(mainEclGrid, mainGrid);
|
|
|
|
|
|
for (lgrIdx = 0; lgrIdx < numLGRs; ++lgrIdx)
|
|
{
|
|
progInfo.setProgressDescription("LGR number " + QString::number(lgrIdx+1));
|
|
|
|
ecl_grid_type* localEclGrid = ecl_grid_iget_lgr(mainEclGrid, lgrIdx);
|
|
RigLocalGrid* localGrid = static_cast<RigLocalGrid*>(mainGrid->gridByIndex(lgrIdx+1));
|
|
|
|
transferGridCellData(mainGrid, activeCellInfo, fractureActiveCellInfo, localGrid, localEclGrid, globalMatrixActiveSize, globalFractureActiveSize);
|
|
|
|
int matrixActiveCellCount = ecl_grid_get_nactive(localEclGrid);
|
|
globalMatrixActiveSize += matrixActiveCellCount;
|
|
|
|
int fractureActiveCellCount = ecl_grid_get_nactive_fracture(localEclGrid);
|
|
globalFractureActiveSize += fractureActiveCellCount;
|
|
|
|
activeCellInfo->setGridActiveCellCounts(lgrIdx + 1, matrixActiveCellCount);
|
|
fractureActiveCellInfo->setGridActiveCellCounts(lgrIdx + 1, fractureActiveCellCount);
|
|
|
|
transferCoarseningInfo(localEclGrid, localGrid);
|
|
|
|
progInfo.setProgress(3 + lgrIdx);
|
|
}
|
|
|
|
activeCellInfo->computeDerivedData();
|
|
fractureActiveCellInfo->computeDerivedData();
|
|
|
|
return true;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Open file and read geometry into given reservoir object
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RifReaderEclipseOutput::open(const QString& fileName, RigCaseData* eclipseCase)
|
|
{
|
|
CVF_ASSERT(eclipseCase);
|
|
caf::ProgressInfo progInfo(100, "");
|
|
|
|
progInfo.setProgressDescription("Reading Grid");
|
|
|
|
// Make sure everything's closed
|
|
close();
|
|
|
|
// Get set of files
|
|
QStringList fileSet;
|
|
if (!RifEclipseOutputFileTools::findSiblingFilesWithSameBaseName(fileName, &fileSet)) return false;
|
|
|
|
progInfo.incrementProgress();
|
|
|
|
progInfo.setNextProgressIncrement(20);
|
|
// Keep the set of files of interest
|
|
m_filesWithSameBaseName = fileSet;
|
|
|
|
// Read geometry
|
|
ecl_grid_type * mainEclGrid = ecl_grid_alloc( fileName.toAscii().data() );
|
|
|
|
progInfo.incrementProgress();
|
|
|
|
progInfo.setNextProgressIncrement(10);
|
|
progInfo.setProgressDescription("Transferring grid geometry");
|
|
|
|
if (!transferGeometry(mainEclGrid, eclipseCase)) return false;
|
|
progInfo.incrementProgress();
|
|
|
|
m_eclipseCase = eclipseCase;
|
|
|
|
progInfo.setProgressDescription("Reading Result index");
|
|
progInfo.setNextProgressIncrement(60);
|
|
|
|
// Build results meta data
|
|
buildMetaData();
|
|
progInfo.incrementProgress();
|
|
|
|
progInfo.setNextProgressIncrement(8);
|
|
progInfo.setProgressDescription("Reading Well information");
|
|
readWellCells(mainEclGrid);
|
|
|
|
progInfo.setProgressDescription("Releasing reader memory");
|
|
ecl_grid_free( mainEclGrid );
|
|
progInfo.incrementProgress();
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RifReaderEclipseOutput::openAndReadActiveCellData(const QString& fileName, const std::vector<QDateTime>& mainCaseTimeSteps, RigCaseData* eclipseCase)
|
|
{
|
|
CVF_ASSERT(eclipseCase);
|
|
|
|
// It is required to have a main grid before reading active cell data
|
|
if (!eclipseCase->mainGrid())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
close();
|
|
|
|
// Get set of files
|
|
QStringList fileSet;
|
|
if (!RifEclipseOutputFileTools::findSiblingFilesWithSameBaseName(fileName, &fileSet)) return false;
|
|
|
|
// Keep the set of files of interest
|
|
m_filesWithSameBaseName = fileSet;
|
|
m_eclipseCase = eclipseCase;
|
|
|
|
|
|
if (!readActiveCellInfo())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
m_dynamicResultsAccess = createDynamicResultsAccess();
|
|
if (m_dynamicResultsAccess.notNull())
|
|
{
|
|
m_dynamicResultsAccess->setTimeSteps(mainCaseTimeSteps);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
/// See also RigStatistics::computeActiveCellUnion()
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RifReaderEclipseOutput::readActiveCellInfo()
|
|
{
|
|
CVF_ASSERT(m_eclipseCase);
|
|
CVF_ASSERT(m_eclipseCase->mainGrid());
|
|
|
|
QString egridFileName = RifEclipseOutputFileTools::firstFileNameOfType(m_filesWithSameBaseName, ECL_EGRID_FILE);
|
|
if (egridFileName.size() > 0)
|
|
{
|
|
ecl_file_type* ecl_file = ecl_file_open(egridFileName.toAscii().data(), ECL_FILE_CLOSE_STREAM);
|
|
if (!ecl_file) return false;
|
|
|
|
int actnumKeywordCount = ecl_file_get_num_named_kw(ecl_file, ACTNUM_KW);
|
|
if (actnumKeywordCount > 0)
|
|
{
|
|
std::vector<std::vector<int> > actnumValuesPerGrid;
|
|
actnumValuesPerGrid.resize(actnumKeywordCount);
|
|
|
|
size_t globalCellCount = 0;
|
|
for (size_t gridIdx = 0; gridIdx < static_cast<size_t>(actnumKeywordCount); gridIdx++)
|
|
{
|
|
RifEclipseOutputFileTools::keywordData(ecl_file, ACTNUM_KW, gridIdx, &actnumValuesPerGrid[gridIdx]);
|
|
|
|
globalCellCount += actnumValuesPerGrid[gridIdx].size();
|
|
}
|
|
|
|
// Check if number of cells is matching
|
|
if (m_eclipseCase->mainGrid()->cells().size() != globalCellCount)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
RigActiveCellInfo* activeCellInfo = m_eclipseCase->activeCellInfo(RifReaderInterface::MATRIX_RESULTS);
|
|
RigActiveCellInfo* fractureActiveCellInfo = m_eclipseCase->activeCellInfo(RifReaderInterface::FRACTURE_RESULTS);
|
|
|
|
activeCellInfo->setGlobalCellCount(globalCellCount);
|
|
fractureActiveCellInfo->setGlobalCellCount(globalCellCount);
|
|
activeCellInfo->setGridCount(actnumKeywordCount);
|
|
fractureActiveCellInfo->setGridCount(actnumKeywordCount);
|
|
|
|
size_t cellIdx = 0;
|
|
size_t globalActiveMatrixIndex = 0;
|
|
size_t globalActiveFractureIndex = 0;
|
|
for (size_t gridIdx = 0; gridIdx < static_cast<size_t>(actnumKeywordCount); gridIdx++)
|
|
{
|
|
size_t activeMatrixIndex = 0;
|
|
size_t activeFractureIndex = 0;
|
|
|
|
std::vector<int>& actnumValues = actnumValuesPerGrid[gridIdx];
|
|
|
|
for (size_t i = 0; i < actnumValues.size(); i++)
|
|
{
|
|
if (actnumValues[i] == 1 || actnumValues[i] == 3)
|
|
{
|
|
activeCellInfo->setCellResultIndex(cellIdx, globalActiveMatrixIndex++);
|
|
activeMatrixIndex++;
|
|
}
|
|
|
|
if (actnumValues[i] == 2 || actnumValues[i] == 3)
|
|
{
|
|
fractureActiveCellInfo->setCellResultIndex(cellIdx, globalActiveFractureIndex++);
|
|
activeFractureIndex++;
|
|
}
|
|
|
|
cellIdx++;
|
|
}
|
|
|
|
activeCellInfo->setGridActiveCellCounts(gridIdx, activeMatrixIndex);
|
|
fractureActiveCellInfo->setGridActiveCellCounts(gridIdx, activeFractureIndex);
|
|
}
|
|
|
|
activeCellInfo->computeDerivedData();
|
|
fractureActiveCellInfo->computeDerivedData();
|
|
}
|
|
|
|
ecl_file_close(ecl_file);
|
|
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Build meta data - get states and results info
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RifReaderEclipseOutput::buildMetaData()
|
|
{
|
|
CVF_ASSERT(m_eclipseCase);
|
|
CVF_ASSERT(m_filesWithSameBaseName.size() > 0);
|
|
|
|
caf::ProgressInfo progInfo(m_filesWithSameBaseName.size() + 3,"");
|
|
|
|
progInfo.setNextProgressIncrement(m_filesWithSameBaseName.size());
|
|
|
|
RigCaseCellResultsData* matrixModelResults = m_eclipseCase->results(RifReaderInterface::MATRIX_RESULTS);
|
|
RigCaseCellResultsData* fractureModelResults = m_eclipseCase->results(RifReaderInterface::FRACTURE_RESULTS);
|
|
|
|
// Create access object for dynamic results
|
|
m_dynamicResultsAccess = createDynamicResultsAccess();
|
|
if (m_dynamicResultsAccess.notNull())
|
|
{
|
|
m_dynamicResultsAccess->open();
|
|
|
|
progInfo.incrementProgress();
|
|
|
|
|
|
// Get time steps
|
|
m_timeSteps = m_dynamicResultsAccess->timeSteps();
|
|
|
|
QStringList resultNames;
|
|
std::vector<size_t> resultNamesDataItemCounts;
|
|
m_dynamicResultsAccess->resultNames(&resultNames, &resultNamesDataItemCounts);
|
|
|
|
{
|
|
QStringList matrixResultNames = validKeywordsForPorosityModel(resultNames, resultNamesDataItemCounts,
|
|
m_eclipseCase->activeCellInfo(RifReaderInterface::MATRIX_RESULTS),
|
|
m_eclipseCase->activeCellInfo(RifReaderInterface::FRACTURE_RESULTS),
|
|
RifReaderInterface::MATRIX_RESULTS, m_dynamicResultsAccess->timeStepCount());
|
|
|
|
for (int i = 0; i < matrixResultNames.size(); ++i)
|
|
{
|
|
size_t resIndex = matrixModelResults->addEmptyScalarResult(RimDefines::DYNAMIC_NATIVE, matrixResultNames[i], false);
|
|
matrixModelResults->setTimeStepDates(resIndex, m_timeSteps);
|
|
}
|
|
}
|
|
|
|
{
|
|
QStringList fractureResultNames = validKeywordsForPorosityModel(resultNames, resultNamesDataItemCounts,
|
|
m_eclipseCase->activeCellInfo(RifReaderInterface::MATRIX_RESULTS),
|
|
m_eclipseCase->activeCellInfo(RifReaderInterface::FRACTURE_RESULTS),
|
|
RifReaderInterface::FRACTURE_RESULTS, m_dynamicResultsAccess->timeStepCount());
|
|
|
|
for (int i = 0; i < fractureResultNames.size(); ++i)
|
|
{
|
|
size_t resIndex = fractureModelResults->addEmptyScalarResult(RimDefines::DYNAMIC_NATIVE, fractureResultNames[i], false);
|
|
fractureModelResults->setTimeStepDates(resIndex, m_timeSteps);
|
|
}
|
|
}
|
|
}
|
|
|
|
progInfo.incrementProgress();
|
|
|
|
openInitFile();
|
|
|
|
progInfo.incrementProgress();
|
|
|
|
if (m_ecl_init_file)
|
|
{
|
|
QStringList resultNames;
|
|
std::vector<size_t> resultNamesDataItemCounts;
|
|
RifEclipseOutputFileTools::findKeywordsAndDataItemCounts(m_ecl_init_file, &resultNames, &resultNamesDataItemCounts);
|
|
|
|
{
|
|
QStringList matrixResultNames = validKeywordsForPorosityModel(resultNames, resultNamesDataItemCounts,
|
|
m_eclipseCase->activeCellInfo(RifReaderInterface::MATRIX_RESULTS),
|
|
m_eclipseCase->activeCellInfo(RifReaderInterface::FRACTURE_RESULTS),
|
|
RifReaderInterface::MATRIX_RESULTS, 1);
|
|
|
|
std::vector<QDateTime> staticDate;
|
|
if (m_timeSteps.size() > 0)
|
|
{
|
|
staticDate.push_back(m_timeSteps.front());
|
|
}
|
|
|
|
for (int i = 0; i < matrixResultNames.size(); ++i)
|
|
{
|
|
size_t resIndex = matrixModelResults->addEmptyScalarResult(RimDefines::STATIC_NATIVE, matrixResultNames[i], false);
|
|
matrixModelResults->setTimeStepDates(resIndex, staticDate);
|
|
}
|
|
}
|
|
|
|
{
|
|
QStringList fractureResultNames = validKeywordsForPorosityModel(resultNames, resultNamesDataItemCounts,
|
|
m_eclipseCase->activeCellInfo(RifReaderInterface::MATRIX_RESULTS),
|
|
m_eclipseCase->activeCellInfo(RifReaderInterface::FRACTURE_RESULTS),
|
|
RifReaderInterface::FRACTURE_RESULTS, 1);
|
|
|
|
std::vector<QDateTime> staticDate;
|
|
if (m_timeSteps.size() > 0)
|
|
{
|
|
staticDate.push_back(m_timeSteps.front());
|
|
}
|
|
|
|
for (int i = 0; i < fractureResultNames.size(); ++i)
|
|
{
|
|
size_t resIndex = fractureModelResults->addEmptyScalarResult(RimDefines::STATIC_NATIVE, fractureResultNames[i], false);
|
|
fractureModelResults->setTimeStepDates(resIndex, staticDate);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Create results access object (.UNRST or .X0001 ... .XNNNN)
|
|
//--------------------------------------------------------------------------------------------------
|
|
RifEclipseRestartDataAccess* RifReaderEclipseOutput::createDynamicResultsAccess()
|
|
{
|
|
RifEclipseRestartDataAccess* resultsAccess = NULL;
|
|
|
|
// Look for unified restart file
|
|
QString unrstFileName = RifEclipseOutputFileTools::firstFileNameOfType(m_filesWithSameBaseName, ECL_UNIFIED_RESTART_FILE);
|
|
if (unrstFileName.size() > 0)
|
|
{
|
|
resultsAccess = new RifEclipseUnifiedRestartFileAccess();
|
|
resultsAccess->setRestartFiles(QStringList(unrstFileName));
|
|
}
|
|
else
|
|
{
|
|
// Look for set of restart files (one file per time step)
|
|
QStringList restartFiles = RifEclipseOutputFileTools::filterFileNamesOfType(m_filesWithSameBaseName, ECL_RESTART_FILE);
|
|
if (restartFiles.size() > 0)
|
|
{
|
|
resultsAccess = new RifEclipseRestartFilesetAccess();
|
|
resultsAccess->setRestartFiles(restartFiles);
|
|
}
|
|
}
|
|
|
|
return resultsAccess;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Get all values of a given static result as doubles
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RifReaderEclipseOutput::staticResult(const QString& result, PorosityModelResultType matrixOrFracture, std::vector<double>* values)
|
|
{
|
|
CVF_ASSERT(values);
|
|
|
|
openInitFile();
|
|
|
|
if(m_ecl_init_file)
|
|
{
|
|
std::vector<double> fileValues;
|
|
|
|
size_t numOccurrences = ecl_file_get_num_named_kw(m_ecl_init_file, result.toAscii().data());
|
|
size_t i;
|
|
for (i = 0; i < numOccurrences; i++)
|
|
{
|
|
std::vector<double> partValues;
|
|
RifEclipseOutputFileTools::keywordData(m_ecl_init_file, result, i, &partValues);
|
|
fileValues.insert(fileValues.end(), partValues.begin(), partValues.end());
|
|
}
|
|
|
|
extractResultValuesBasedOnPorosityModel(matrixOrFracture, values, fileValues);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
/// Get dynamic result at given step index. Will concatenate values for the main grid and all sub grids.
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RifReaderEclipseOutput::dynamicResult(const QString& result, PorosityModelResultType matrixOrFracture, size_t stepIndex, std::vector<double>* values)
|
|
{
|
|
if (m_dynamicResultsAccess.isNull())
|
|
{
|
|
m_dynamicResultsAccess = createDynamicResultsAccess();
|
|
}
|
|
|
|
if (m_dynamicResultsAccess.notNull())
|
|
{
|
|
std::vector<double> fileValues;
|
|
if (!m_dynamicResultsAccess->results(result, stepIndex, m_eclipseCase->mainGrid()->gridCount(), &fileValues))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
extractResultValuesBasedOnPorosityModel(matrixOrFracture, values, fileValues);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
// Helper structure to handle the metadata for connections in segments
|
|
struct SegmentData
|
|
{
|
|
SegmentData(const well_conn_collection_type* connections) :
|
|
m_branchId(-1),
|
|
m_segmentId(-1),
|
|
m_gridIndex(cvf::UNDEFINED_SIZE_T),
|
|
m_connections(connections)
|
|
{}
|
|
|
|
int m_branchId;
|
|
int m_segmentId;
|
|
size_t m_gridIndex;
|
|
const well_conn_collection_type* m_connections;
|
|
};
|
|
|
|
void getSegmentDataByBranchId(const std::list<SegmentData>& segments, std::vector<SegmentData>& branchSegments, int branchId)
|
|
{
|
|
std::list<SegmentData>::const_iterator it;
|
|
|
|
for (it = segments.begin(); it != segments.end(); it++)
|
|
{
|
|
if (it->m_branchId == branchId)
|
|
{
|
|
branchSegments.push_back(*it);
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RifReaderEclipseOutput::readWellCells(const ecl_grid_type* mainEclGrid)
|
|
{
|
|
CVF_ASSERT(m_eclipseCase);
|
|
|
|
if (m_dynamicResultsAccess.isNull()) return;
|
|
|
|
well_info_type* ert_well_info = well_info_alloc(mainEclGrid);
|
|
if (!ert_well_info) return;
|
|
|
|
m_dynamicResultsAccess->readWellData(ert_well_info);
|
|
|
|
RigMainGrid* mainGrid = m_eclipseCase->mainGrid();
|
|
std::vector<RigGridBase*> grids;
|
|
m_eclipseCase->allGrids(&grids);
|
|
|
|
cvf::Collection<RigSingleWellResultsData> wells;
|
|
caf::ProgressInfo progress(well_info_get_num_wells(ert_well_info), "");
|
|
|
|
int wellIdx;
|
|
for (wellIdx = 0; wellIdx < well_info_get_num_wells(ert_well_info); wellIdx++)
|
|
{
|
|
const char* wellName = well_info_iget_well_name(ert_well_info, wellIdx);
|
|
CVF_ASSERT(wellName);
|
|
|
|
cvf::ref<RigSingleWellResultsData> wellResults = new RigSingleWellResultsData;
|
|
wellResults->m_wellName = wellName;
|
|
|
|
well_ts_type* ert_well_time_series = well_info_get_ts(ert_well_info , wellName);
|
|
int timeStepCount = well_ts_get_size(ert_well_time_series);
|
|
|
|
wellResults->m_wellCellsTimeSteps.resize(timeStepCount);
|
|
|
|
int timeIdx;
|
|
for (timeIdx = 0; timeIdx < timeStepCount; timeIdx++)
|
|
{
|
|
well_state_type* ert_well_state = well_ts_iget_state(ert_well_time_series, timeIdx);
|
|
|
|
RigWellResultFrame& wellResFrame = wellResults->m_wellCellsTimeSteps[timeIdx];
|
|
|
|
// Build timestamp for well
|
|
// Also see RifEclipseOutputFileAccess::timeStepsText for accessing time_t structures
|
|
{
|
|
time_t stepTime = well_state_get_sim_time(ert_well_state);
|
|
wellResFrame.m_timestamp = QDateTime::fromTime_t(stepTime);
|
|
}
|
|
|
|
// Production type
|
|
well_type_enum ert_well_type = well_state_get_type(ert_well_state);
|
|
if (ert_well_type == PRODUCER)
|
|
{
|
|
wellResFrame.m_productionType = RigWellResultFrame::PRODUCER;
|
|
}
|
|
else if (ert_well_type == WATER_INJECTOR)
|
|
{
|
|
wellResFrame.m_productionType = RigWellResultFrame::WATER_INJECTOR;
|
|
}
|
|
else if (ert_well_type == GAS_INJECTOR)
|
|
{
|
|
wellResFrame.m_productionType = RigWellResultFrame::GAS_INJECTOR;
|
|
}
|
|
else if (ert_well_type == OIL_INJECTOR)
|
|
{
|
|
wellResFrame.m_productionType = RigWellResultFrame::OIL_INJECTOR;
|
|
}
|
|
else
|
|
{
|
|
wellResFrame.m_productionType = RigWellResultFrame::UNDEFINED_PRODUCTION_TYPE;
|
|
}
|
|
|
|
wellResFrame.m_isOpen = well_state_is_open( ert_well_state );
|
|
|
|
|
|
|
|
// Loop over all the grids in the model. If we have connections in one, we will discard
|
|
// the main grid connections as the well connections are duplicated in the main grid and LGR grids
|
|
|
|
bool hasWellConnectionsInLGR = false;
|
|
|
|
#if 0
|
|
// To be discussed with Statoil
|
|
for (size_t gridNr = 1; gridNr < grids.size(); ++gridNr)
|
|
{
|
|
RigGridBase* lgrGrid = m_eclipseCase->grid(gridNr);
|
|
if (well_state_has_grid_connections(ert_well_state, lgrGrid->gridName().data()))
|
|
{
|
|
hasWellConnectionsInLGR = true;
|
|
break;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
size_t gridNr = hasWellConnectionsInLGR ? 1 : 0;
|
|
for (; gridNr < grids.size(); ++gridNr)
|
|
{
|
|
|
|
// Wellhead. If several grids have a wellhead definition for this well, we use the last one. (Possibly the innermost LGR)
|
|
const well_conn_type* ert_wellhead = well_state_iget_wellhead(ert_well_state, static_cast<int>(gridNr));
|
|
if (ert_wellhead)
|
|
{
|
|
int cellI = well_conn_get_i( ert_wellhead );
|
|
int cellJ = well_conn_get_j( ert_wellhead );
|
|
int cellK = CVF_MAX(0, well_conn_get_k(ert_wellhead)); // Why this ?
|
|
|
|
// If a well is defined in fracture region, the K-value is from (cellCountK - 1) -> cellCountK*2 - 1
|
|
// Adjust K so index is always in valid grid region
|
|
if (cellK >= static_cast<int>(grids[gridNr]->cellCountK()))
|
|
{
|
|
cellK -= static_cast<int>(grids[gridNr]->cellCountK());
|
|
}
|
|
|
|
wellResFrame.m_wellHead.m_gridCellIndex = grids[gridNr]->cellIndexFromIJK(cellI, cellJ, cellK);
|
|
wellResFrame.m_wellHead.m_gridIndex = gridNr;
|
|
}
|
|
else
|
|
{
|
|
CVF_ASSERT(0);
|
|
}
|
|
|
|
|
|
std::string gridName;
|
|
if (gridNr == 0)
|
|
{
|
|
gridName = ECL_GRID_GLOBAL_GRID;
|
|
}
|
|
else
|
|
{
|
|
RigGridBase* rigGrid = m_eclipseCase->grid(gridNr);
|
|
gridName = rigGrid->gridName();
|
|
}
|
|
|
|
|
|
|
|
std::list<SegmentData> segmentList;
|
|
std::vector<const well_segment_type*> outletBranchSegmentList; // Keep a list of branch outlet segments to avoid traversal twice
|
|
std::vector<int> ertBranchIDs;
|
|
|
|
int branchCount = 0;
|
|
if (well_state_is_MSW(ert_well_state))
|
|
{
|
|
wellResults->setMultiSegmentWell(true);
|
|
|
|
well_branch_collection_type* branches = well_state_get_branches(ert_well_state);
|
|
|
|
branchCount = well_branch_collection_get_size(branches);
|
|
for (int branchIdx = 0; branchIdx < well_branch_collection_get_size(branches); branchIdx++)
|
|
{
|
|
const well_segment_type* segment = well_branch_collection_iget_start_segment(branches, branchIdx);
|
|
int branchId = well_segment_get_branch_id(segment);
|
|
|
|
ertBranchIDs.push_back(branchId);
|
|
|
|
while (segment && branchId == well_segment_get_branch_id(segment))
|
|
{
|
|
SegmentData segmentData(NULL);
|
|
segmentData.m_branchId = branchId;
|
|
segmentData.m_segmentId = well_segment_get_id(segment);
|
|
segmentData.m_gridIndex = gridNr;
|
|
|
|
if (well_segment_has_grid_connections(segment, gridName.data()))
|
|
{
|
|
const well_conn_collection_type* connections = well_segment_get_connections(segment, gridName.data());
|
|
segmentData.m_connections = connections;
|
|
}
|
|
|
|
// Insert in front, as the segments are accessed starting from grid cell closes to well head
|
|
segmentList.push_front(segmentData);
|
|
|
|
if (well_segment_get_outlet_id(segment) == -1)
|
|
{
|
|
break;
|
|
}
|
|
|
|
segment = well_segment_get_outlet(segment);
|
|
}
|
|
|
|
outletBranchSegmentList.push_back(segment);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
branchCount = 1;
|
|
ertBranchIDs.push_back(0);
|
|
|
|
const well_conn_collection_type* connections = well_state_get_grid_connections(ert_well_state, gridName.data());
|
|
SegmentData segmentData(connections);
|
|
segmentData.m_gridIndex = gridNr;
|
|
segmentList.push_front(segmentData);
|
|
}
|
|
|
|
size_t currentGridBranchStartIndex = wellResFrame.m_wellResultBranches.size();
|
|
wellResFrame.m_wellResultBranches.resize(currentGridBranchStartIndex + branchCount);
|
|
|
|
|
|
// Import all well result cells for all connections
|
|
for (int branchIdx = 0; branchIdx < branchCount; branchIdx++)
|
|
{
|
|
RigWellResultBranch& wellResultBranch = wellResFrame.m_wellResultBranches[currentGridBranchStartIndex + branchIdx];
|
|
wellResultBranch.m_branchIndex = branchIdx;
|
|
|
|
int ertBranchId = ertBranchIDs[branchIdx];
|
|
wellResultBranch.m_ertBranchId = ertBranchId;
|
|
|
|
std::vector<SegmentData> branchSegments;
|
|
getSegmentDataByBranchId(segmentList, branchSegments, ertBranchId);
|
|
|
|
for (size_t segmentIdx = 0; segmentIdx < branchSegments.size(); segmentIdx++)
|
|
{
|
|
SegmentData& connData = branchSegments[segmentIdx];
|
|
|
|
if (!connData.m_connections)
|
|
{
|
|
size_t existingCellCount = wellResultBranch.m_wellCells.size();
|
|
wellResultBranch.m_wellCells.resize(existingCellCount + 1);
|
|
|
|
RigWellResultCell& data = wellResultBranch.m_wellCells[existingCellCount];
|
|
|
|
data.m_ertBranchId = connData.m_branchId;
|
|
data.m_ertSegmentId = connData.m_segmentId;
|
|
}
|
|
else
|
|
{
|
|
int connectionCount = well_conn_collection_get_size(connData.m_connections);
|
|
|
|
size_t existingCellCount = wellResultBranch.m_wellCells.size();
|
|
wellResultBranch.m_wellCells.resize(existingCellCount + connectionCount);
|
|
|
|
for (int connIdx = 0; connIdx < connectionCount; connIdx++)
|
|
{
|
|
well_conn_type* ert_connection = well_conn_collection_iget(connData.m_connections, connIdx);
|
|
CVF_ASSERT(ert_connection);
|
|
|
|
RigWellResultCell& data = wellResultBranch.m_wellCells[existingCellCount + connIdx];
|
|
int cellI = well_conn_get_i( ert_connection );
|
|
int cellJ = well_conn_get_j( ert_connection );
|
|
int cellK = well_conn_get_k( ert_connection );
|
|
bool isCellOpen = well_conn_open( ert_connection );
|
|
|
|
// If a well is defined in fracture region, the K-value is from (cellCountK - 1) -> cellCountK*2 - 1
|
|
// Adjust K so index is always in valid grid region
|
|
if (cellK >= static_cast<int>(grids[gridNr]->cellCountK()))
|
|
{
|
|
cellK -= static_cast<int>(grids[gridNr]->cellCountK());
|
|
}
|
|
|
|
data.m_gridIndex = gridNr;
|
|
data.m_gridCellIndex = grids[gridNr]->cellIndexFromIJK(cellI, cellJ, cellK);
|
|
|
|
data.m_isOpen = isCellOpen;
|
|
|
|
data.m_ertBranchId = connData.m_branchId;
|
|
data.m_ertSegmentId = connData.m_segmentId;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
if (well_state_is_MSW(ert_well_state))
|
|
{
|
|
|
|
// Assign outlet well cells to leaf branch well heads
|
|
|
|
for (int branchIdx = 0; branchIdx < branchCount; branchIdx++)
|
|
{
|
|
RigWellResultBranch& wellResultLeafBranch = wellResFrame.m_wellResultBranches[currentGridBranchStartIndex + branchIdx];
|
|
|
|
const well_segment_type* outletBranchSegment = outletBranchSegmentList[branchIdx];
|
|
CVF_ASSERT(outletBranchSegment);
|
|
|
|
int outletErtBranchId = well_segment_get_branch_id(outletBranchSegment);
|
|
|
|
size_t outletErtBranchIndex = cvf::UNDEFINED_SIZE_T;
|
|
for (size_t i = 0; i < ertBranchIDs.size(); i++)
|
|
{
|
|
if (ertBranchIDs[i] == outletErtBranchId)
|
|
{
|
|
outletErtBranchIndex = i;
|
|
}
|
|
}
|
|
|
|
RigWellResultBranch& outletResultBranch = wellResFrame.m_wellResultBranches[currentGridBranchStartIndex + outletErtBranchIndex];
|
|
|
|
int outletErtSegmentId = well_segment_get_branch_id(outletBranchSegment);
|
|
size_t lastCellIndexForSegmentIdInOutletBranch = cvf::UNDEFINED_SIZE_T;
|
|
for (size_t outletCellIdx = 0; outletCellIdx < outletResultBranch.m_wellCells.size(); outletCellIdx++)
|
|
{
|
|
if (outletResultBranch.m_wellCells[outletCellIdx].m_ertSegmentId == outletErtSegmentId)
|
|
{
|
|
lastCellIndexForSegmentIdInOutletBranch = outletCellIdx;
|
|
}
|
|
}
|
|
|
|
if (lastCellIndexForSegmentIdInOutletBranch == cvf::UNDEFINED_SIZE_T)
|
|
{
|
|
// Did not find the cell in the outlet branch based on branch id and segment id from outlet cell in leaf branch
|
|
CVF_ASSERT(0);
|
|
}
|
|
else
|
|
{
|
|
RigWellResultCell& outletCell = outletResultBranch.m_wellCells[lastCellIndexForSegmentIdInOutletBranch];
|
|
|
|
wellResultLeafBranch.m_outletBranchIndex = currentGridBranchStartIndex + outletErtBranchIndex;
|
|
wellResultLeafBranch.m_outletBranchHeadCellIndex = lastCellIndexForSegmentIdInOutletBranch;
|
|
}
|
|
}
|
|
|
|
|
|
// Update outlet well cells with no grid cell connections
|
|
|
|
for (int branchIdx = 0; branchIdx < branchCount; branchIdx++)
|
|
{
|
|
RigWellResultBranch& wellResultLeafBranch = wellResFrame.m_wellResultBranches[currentGridBranchStartIndex + branchIdx];
|
|
|
|
const RigWellResultCell* leafBranchHead = wellResFrame.findResultCellFromOutletSpecification(wellResultLeafBranch.m_outletBranchIndex, wellResultLeafBranch.m_outletBranchHeadCellIndex);
|
|
if (!leafBranchHead || leafBranchHead->hasGridConnections())
|
|
{
|
|
continue;
|
|
}
|
|
|
|
RigWellResultBranch& outletResultBranch = wellResFrame.m_wellResultBranches[wellResultLeafBranch.m_outletBranchIndex];
|
|
|
|
size_t firstCellIndexWithGridConnectionInLeafBranch = cvf::UNDEFINED_SIZE_T;
|
|
for (size_t j = 0; j < wellResultLeafBranch.m_wellCells.size(); j++)
|
|
{
|
|
if (wellResultLeafBranch.m_wellCells[j].hasGridConnections())
|
|
{
|
|
firstCellIndexWithGridConnectionInLeafBranch = j;
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (firstCellIndexWithGridConnectionInLeafBranch != cvf::UNDEFINED_SIZE_T)
|
|
{
|
|
const RigCell& firstCellWithGridConnectionInLeafBranch = m_eclipseCase->cellFromWellResultCell(wellResultLeafBranch.m_wellCells[firstCellIndexWithGridConnectionInLeafBranch]);
|
|
cvf::Vec3d firstGridConnectionCenterInLeafBranch = firstCellWithGridConnectionInLeafBranch.center();
|
|
|
|
size_t cellIndexInOutletBranch = wellResultLeafBranch.m_outletBranchHeadCellIndex;
|
|
CVF_ASSERT(cellIndexInOutletBranch != cvf::UNDEFINED_SIZE_T);
|
|
|
|
RigWellResultCell& currCell = outletResultBranch.m_wellCells[cellIndexInOutletBranch];
|
|
|
|
while (cellIndexInOutletBranch != cvf::UNDEFINED_SIZE_T && !currCell.hasGridConnections())
|
|
{
|
|
size_t branchConnectionCount = currCell.m_branchConnectionCount;
|
|
if (branchConnectionCount == 0)
|
|
{
|
|
currCell.m_averageCenter = firstGridConnectionCenterInLeafBranch;
|
|
}
|
|
else
|
|
{
|
|
cvf::Vec3d currentWeightedCoord = currCell.m_averageCenter * branchConnectionCount / static_cast<double>(branchConnectionCount + 1);
|
|
cvf::Vec3d additionalWeightedCoord = firstGridConnectionCenterInLeafBranch / static_cast<double>(branchConnectionCount + 1);
|
|
|
|
currCell.m_averageCenter = currentWeightedCoord + additionalWeightedCoord;
|
|
}
|
|
|
|
currCell.m_branchConnectionCount++;
|
|
|
|
if (cellIndexInOutletBranch == 0)
|
|
{
|
|
cellIndexInOutletBranch = cvf::UNDEFINED_SIZE_T;
|
|
|
|
// Find the branch the outlet is connected to, and continue update of
|
|
// segments until a segment with a grid connection is found
|
|
const RigWellResultCell* leafBranchHead = wellResFrame.findResultCellFromOutletSpecification(outletResultBranch.m_outletBranchIndex, outletResultBranch.m_outletBranchHeadCellIndex);
|
|
|
|
if (leafBranchHead &&
|
|
!leafBranchHead->hasGridConnections() &&
|
|
leafBranchHead->m_ertBranchId != outletResultBranch.m_ertBranchId)
|
|
{
|
|
outletResultBranch = wellResFrame.m_wellResultBranches[outletResultBranch.m_outletBranchIndex];
|
|
cellIndexInOutletBranch = outletResultBranch.m_outletBranchHeadCellIndex;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
cellIndexInOutletBranch--;
|
|
}
|
|
|
|
if(cellIndexInOutletBranch >= 0 && cellIndexInOutletBranch < outletResultBranch.m_wellCells.size())
|
|
{
|
|
currCell = outletResultBranch.m_wellCells[cellIndexInOutletBranch];
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
wellResults->computeMappingFromResultTimeIndicesToWellTimeIndices(m_timeSteps);
|
|
|
|
wells.push_back(wellResults.p());
|
|
|
|
progress.incrementProgress();
|
|
}
|
|
|
|
well_info_free(ert_well_info);
|
|
|
|
m_eclipseCase->setWellResults(wells);
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
QStringList RifReaderEclipseOutput::validKeywordsForPorosityModel(const QStringList& keywords, const std::vector<size_t>& keywordDataItemCounts,
|
|
const RigActiveCellInfo* activeCellInfo, const RigActiveCellInfo* fractureActiveCellInfo,
|
|
PorosityModelResultType matrixOrFracture, size_t timeStepCount) const
|
|
{
|
|
CVF_ASSERT(activeCellInfo);
|
|
|
|
if (keywords.size() != static_cast<int>(keywordDataItemCounts.size()))
|
|
{
|
|
return QStringList();
|
|
}
|
|
|
|
if (matrixOrFracture == RifReaderInterface::FRACTURE_RESULTS)
|
|
{
|
|
if (fractureActiveCellInfo->globalActiveCellCount() == 0)
|
|
{
|
|
return QStringList();
|
|
}
|
|
}
|
|
|
|
QStringList keywordsWithCorrectNumberOfDataItems;
|
|
|
|
for (int i = 0; i < keywords.size(); i++)
|
|
{
|
|
QString keyword = keywords[i];
|
|
size_t keywordDataCount = keywordDataItemCounts[i];
|
|
|
|
if (activeCellInfo->globalActiveCellCount() > 0)
|
|
{
|
|
size_t timeStepsMatrix = keywordDataItemCounts[i] / activeCellInfo->globalActiveCellCount();
|
|
size_t timeStepsMatrixRest = keywordDataItemCounts[i] % activeCellInfo->globalActiveCellCount();
|
|
|
|
size_t timeStepsMatrixAndFracture = keywordDataItemCounts[i] / (activeCellInfo->globalActiveCellCount() + fractureActiveCellInfo->globalActiveCellCount());
|
|
size_t timeStepsMatrixAndFractureRest = keywordDataItemCounts[i] % (activeCellInfo->globalActiveCellCount() + fractureActiveCellInfo->globalActiveCellCount());
|
|
|
|
if (matrixOrFracture == RifReaderInterface::MATRIX_RESULTS)
|
|
{
|
|
if (timeStepsMatrixRest == 0 || timeStepsMatrixAndFractureRest == 0)
|
|
{
|
|
if (timeStepCount == timeStepsMatrix || timeStepCount == timeStepsMatrixAndFracture)
|
|
{
|
|
keywordsWithCorrectNumberOfDataItems.push_back(keywords[i]);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
if (timeStepsMatrixAndFractureRest == 0 && timeStepCount == timeStepsMatrixAndFracture)
|
|
{
|
|
keywordsWithCorrectNumberOfDataItems.push_back(keywords[i]);
|
|
}
|
|
}
|
|
}
|
|
else
|
|
{
|
|
keywordsWithCorrectNumberOfDataItems.push_back(keywords[i]);
|
|
}
|
|
}
|
|
|
|
return keywordsWithCorrectNumberOfDataItems;
|
|
}
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RifReaderEclipseOutput::extractResultValuesBasedOnPorosityModel(PorosityModelResultType matrixOrFracture, std::vector<double>* destinationResultValues, const std::vector<double>& sourceResultValues)
|
|
{
|
|
RigActiveCellInfo* fracActCellInfo = m_eclipseCase->activeCellInfo(RifReaderInterface::FRACTURE_RESULTS);
|
|
|
|
|
|
if (matrixOrFracture == RifReaderInterface::MATRIX_RESULTS && fracActCellInfo->globalActiveCellCount() == 0)
|
|
{
|
|
destinationResultValues->insert(destinationResultValues->end(), sourceResultValues.begin(), sourceResultValues.end());
|
|
}
|
|
else
|
|
{
|
|
RigActiveCellInfo* actCellInfo = m_eclipseCase->activeCellInfo(RifReaderInterface::MATRIX_RESULTS);
|
|
|
|
size_t dataItemCount = 0;
|
|
size_t sourceStartPosition = 0;
|
|
|
|
for (size_t i = 0; i < m_eclipseCase->mainGrid()->gridCount(); i++)
|
|
{
|
|
size_t matrixActiveCellCount = 0;
|
|
size_t fractureActiveCellCount = 0;
|
|
|
|
actCellInfo->gridActiveCellCounts(i, matrixActiveCellCount);
|
|
fracActCellInfo->gridActiveCellCounts(i, fractureActiveCellCount);
|
|
|
|
if (matrixOrFracture == RifReaderInterface::MATRIX_RESULTS)
|
|
{
|
|
destinationResultValues->insert(destinationResultValues->end(),
|
|
sourceResultValues.begin() + sourceStartPosition,
|
|
sourceResultValues.begin() + sourceStartPosition + matrixActiveCellCount);
|
|
}
|
|
else
|
|
{
|
|
destinationResultValues->insert(destinationResultValues->end(),
|
|
sourceResultValues.begin() + sourceStartPosition + matrixActiveCellCount,
|
|
sourceResultValues.begin() + sourceStartPosition + matrixActiveCellCount + fractureActiveCellCount);
|
|
}
|
|
|
|
sourceStartPosition += (matrixActiveCellCount + fractureActiveCellCount);
|
|
}
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RifReaderEclipseOutput::openInitFile()
|
|
{
|
|
if (m_ecl_init_file)
|
|
{
|
|
return;
|
|
}
|
|
|
|
QString initFileName = RifEclipseOutputFileTools::firstFileNameOfType(m_filesWithSameBaseName, ECL_INIT_FILE);
|
|
if (initFileName.size() > 0)
|
|
{
|
|
m_ecl_init_file = ecl_file_open(initFileName.toAscii().data(), ECL_FILE_CLOSE_STREAM);
|
|
}
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::vector<QDateTime> RifReaderEclipseOutput::timeSteps()
|
|
{
|
|
return m_timeSteps;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RifReaderEclipseOutput::transferCoarseningInfo(const ecl_grid_type* eclGrid, RigGridBase* grid)
|
|
{
|
|
int coarseGroupCount = ecl_grid_get_num_coarse_groups(eclGrid);
|
|
for (int i = 0; i < coarseGroupCount; i++)
|
|
{
|
|
ecl_coarse_cell_type* coarse_cell = ecl_grid_iget_coarse_group(eclGrid, i);
|
|
CVF_ASSERT(coarse_cell);
|
|
|
|
size_t i1 = static_cast<size_t>(ecl_coarse_cell_get_i1(coarse_cell));
|
|
size_t i2 = static_cast<size_t>(ecl_coarse_cell_get_i2(coarse_cell));
|
|
size_t j1 = static_cast<size_t>(ecl_coarse_cell_get_j1(coarse_cell));
|
|
size_t j2 = static_cast<size_t>(ecl_coarse_cell_get_j2(coarse_cell));
|
|
size_t k1 = static_cast<size_t>(ecl_coarse_cell_get_k1(coarse_cell));
|
|
size_t k2 = static_cast<size_t>(ecl_coarse_cell_get_k2(coarse_cell));
|
|
|
|
grid->addCoarseningBox(i1, i2, j1, j2, k1, k2);
|
|
}
|
|
}
|
|
|