2016-05-31 06:42:27 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2016- 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 "RimSummaryCaseCollection.h"
|
|
|
|
#include "RimSummaryCase.h"
|
|
|
|
#include "RimOilField.h"
|
|
|
|
#include "RimProject.h"
|
|
|
|
#include "RimEclipseResultCase.h"
|
|
|
|
#include "RimGridSummaryCase.h"
|
|
|
|
#include "RifEclipseSummaryTools.h"
|
|
|
|
#include <QDir>
|
2016-10-06 03:33:57 -05:00
|
|
|
#include "RimFileSummaryCase.h"
|
2016-05-31 06:42:27 -05:00
|
|
|
|
|
|
|
|
|
|
|
CAF_PDM_SOURCE_INIT(RimSummaryCaseCollection,"SummaryCaseCollection");
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RimSummaryCaseCollection::RimSummaryCaseCollection()
|
|
|
|
{
|
|
|
|
CAF_PDM_InitObject("Summary Cases",":/Cases16x16.png","","");
|
|
|
|
|
|
|
|
CAF_PDM_InitFieldNoDefault(&m_cases,"SummaryCases","","","","");
|
|
|
|
m_cases.uiCapability()->setUiHidden(true);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RimSummaryCaseCollection::~RimSummaryCaseCollection()
|
|
|
|
{
|
|
|
|
m_cases.deleteAllChildObjects();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RimSummaryCaseCollection::createSummaryCasesFromRelevantEclipseResultCases()
|
|
|
|
{
|
|
|
|
RimProject* proj = nullptr;
|
2016-09-21 06:59:41 -05:00
|
|
|
firstAncestorOrThisOfType(proj);
|
2016-05-31 06:42:27 -05:00
|
|
|
if (proj)
|
|
|
|
{
|
|
|
|
std::vector<RimCase*> all3DCases;
|
|
|
|
proj->allCases(all3DCases);
|
|
|
|
for (RimCase* aCase: all3DCases)
|
|
|
|
{
|
|
|
|
RimEclipseResultCase* eclResCase = dynamic_cast<RimEclipseResultCase*>(aCase);
|
|
|
|
if (eclResCase)
|
|
|
|
{
|
|
|
|
// If we have no summary case corresponding to this eclipse case,
|
|
|
|
// try to create one.
|
|
|
|
bool isFound = false;
|
|
|
|
for (size_t scIdx = 0; scIdx < m_cases.size(); ++scIdx)
|
|
|
|
{
|
|
|
|
RimGridSummaryCase* grdSumCase = dynamic_cast<RimGridSummaryCase*>(m_cases[scIdx]);
|
|
|
|
if (grdSumCase)
|
|
|
|
{
|
|
|
|
if (grdSumCase->associatedEclipseCase() == eclResCase)
|
|
|
|
{
|
|
|
|
isFound = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isFound)
|
|
|
|
{
|
|
|
|
// Create new GridSummaryCase
|
|
|
|
createAndAddSummaryCaseFromEclipseResultCase(eclResCase);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RimSummaryCase* RimSummaryCaseCollection::summaryCase(size_t idx)
|
|
|
|
{
|
|
|
|
return m_cases[idx];
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
size_t RimSummaryCaseCollection::summaryCaseCount()
|
|
|
|
{
|
|
|
|
return m_cases.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RimSummaryCaseCollection::loadAllSummaryCaseData()
|
|
|
|
{
|
|
|
|
for (RimSummaryCase* sumCase: m_cases)
|
|
|
|
{
|
|
|
|
if (sumCase) sumCase->loadCase();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2016-10-06 03:33:57 -05:00
|
|
|
RimSummaryCase* RimSummaryCaseCollection::createAndAddSummaryCaseFromEclipseResultCase(RimEclipseResultCase* eclResCase)
|
2016-05-31 06:42:27 -05:00
|
|
|
{
|
|
|
|
QString gridFileName = eclResCase->gridFileName();
|
|
|
|
if(RifEclipseSummaryTools::hasSummaryFiles(QDir::toNativeSeparators(gridFileName).toStdString()))
|
|
|
|
{
|
|
|
|
RimGridSummaryCase* newSumCase = new RimGridSummaryCase();
|
2016-08-05 04:05:58 -05:00
|
|
|
this->m_cases.push_back(newSumCase);
|
2016-05-31 06:42:27 -05:00
|
|
|
newSumCase->setAssociatedEclipseCase(eclResCase);
|
2016-07-06 06:35:24 -05:00
|
|
|
newSumCase->updateOptionSensitivity();
|
2016-05-31 06:42:27 -05:00
|
|
|
return newSumCase;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2016-10-06 03:33:57 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RimSummaryCase* RimSummaryCaseCollection::createAndAddSummaryCaseFromFileName(const QString& fileName)
|
|
|
|
{
|
|
|
|
RimFileSummaryCase* newSumCase = new RimFileSummaryCase();
|
|
|
|
|
|
|
|
this->m_cases.push_back(newSumCase);
|
|
|
|
newSumCase->setSummaryHeaderFilename(fileName);
|
|
|
|
newSumCase->updateOptionSensitivity();
|
|
|
|
|
|
|
|
return newSumCase;
|
|
|
|
}
|
|
|
|
|
2016-07-06 06:35:24 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
QString RimSummaryCaseCollection::uniqueShortNameForCase(RimSummaryCase* summaryCase)
|
|
|
|
{
|
2016-08-05 04:05:58 -05:00
|
|
|
std::set<QString> allAutoShortNames;
|
2016-07-06 06:35:24 -05:00
|
|
|
|
|
|
|
for (RimSummaryCase* sumCase : m_cases)
|
|
|
|
{
|
|
|
|
if (sumCase && sumCase != summaryCase)
|
|
|
|
{
|
2016-08-05 04:05:58 -05:00
|
|
|
allAutoShortNames.insert(sumCase->shortName());
|
2016-07-06 06:35:24 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool foundUnique = false;
|
|
|
|
|
|
|
|
QString caseName = summaryCase->caseName();
|
2016-08-05 04:05:58 -05:00
|
|
|
QString shortName;
|
|
|
|
|
|
|
|
if (caseName.size() > 2)
|
2016-07-06 06:35:24 -05:00
|
|
|
{
|
2016-08-05 05:33:09 -05:00
|
|
|
QString candidate;
|
|
|
|
candidate += caseName[0];
|
2016-08-05 04:05:58 -05:00
|
|
|
|
|
|
|
for (int i = 1; i < caseName.size(); ++i )
|
2016-07-06 06:35:24 -05:00
|
|
|
{
|
2016-08-05 04:05:58 -05:00
|
|
|
if (allAutoShortNames.count(candidate + caseName[i]) == 0)
|
2016-07-06 06:35:24 -05:00
|
|
|
{
|
2016-08-05 04:05:58 -05:00
|
|
|
shortName = candidate + caseName[i];
|
|
|
|
foundUnique = true;
|
|
|
|
break;
|
2016-07-06 06:35:24 -05:00
|
|
|
}
|
|
|
|
}
|
2016-08-05 04:05:58 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
shortName = caseName.left(2);
|
|
|
|
if(allAutoShortNames.count(shortName) == 0)
|
|
|
|
{
|
|
|
|
foundUnique = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
QString candidate = shortName;
|
|
|
|
int autoNumber = 0;
|
|
|
|
|
|
|
|
while (!foundUnique)
|
|
|
|
{
|
|
|
|
candidate = shortName + QString::number(autoNumber++);
|
|
|
|
if(allAutoShortNames.count(candidate) == 0)
|
|
|
|
{
|
|
|
|
shortName = candidate;
|
|
|
|
foundUnique = true;
|
|
|
|
}
|
2016-07-06 06:35:24 -05:00
|
|
|
}
|
|
|
|
|
2016-08-05 04:05:58 -05:00
|
|
|
return shortName;
|
2016-07-06 06:35:24 -05:00
|
|
|
}
|
|
|
|
|