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
|
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.
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2017-03-13 05:05:46 -05:00
|
|
|
#include "RivReservoirSimWellsPartMgr.h"
|
2015-09-25 08:57:43 -05:00
|
|
|
|
|
|
|
#include "Rim3dOverlayInfoConfig.h"
|
|
|
|
#include "RimCellEdgeColors.h"
|
|
|
|
#include "RimCellRangeFilterCollection.h"
|
|
|
|
#include "RimEclipseCellColors.h"
|
|
|
|
#include "RimEclipsePropertyFilterCollection.h"
|
2015-05-21 03:34:38 -05:00
|
|
|
#include "RimEclipseView.h"
|
2015-06-25 06:36:15 -05:00
|
|
|
#include "RimEclipseWell.h"
|
|
|
|
#include "RimEclipseWellCollection.h"
|
2015-09-25 08:57:43 -05:00
|
|
|
|
2012-06-26 09:10:41 -05:00
|
|
|
#include "RivWellHeadPartMgr.h"
|
2017-01-03 03:09:57 -06:00
|
|
|
#include "RivSimWellPipesPartMgr.h"
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2013-05-06 03:55:00 -05:00
|
|
|
#include "cafPdmFieldCvfColor.h"
|
2015-09-25 08:57:43 -05:00
|
|
|
#include "cafPdmFieldCvfMat4d.h"
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2017-02-24 04:07:15 -06:00
|
|
|
#include "cvfTransform.h"
|
2017-03-13 05:35:49 -05:00
|
|
|
#include "RivWellSpheresPartMgr.h"
|
2017-02-24 04:07:15 -06:00
|
|
|
|
2012-05-18 02:45:23 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2017-03-13 05:05:46 -05:00
|
|
|
RivReservoirSimWellsPartMgr::RivReservoirSimWellsPartMgr(RimEclipseView* reservoirView)
|
2012-05-18 02:45:23 -05:00
|
|
|
{
|
|
|
|
m_reservoirView = reservoirView;
|
|
|
|
|
|
|
|
m_scaleTransform = new cvf::Transform();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2017-03-13 05:05:46 -05:00
|
|
|
RivReservoirSimWellsPartMgr::~RivReservoirSimWellsPartMgr()
|
2012-05-18 02:45:23 -05:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2017-03-13 05:05:46 -05:00
|
|
|
void RivReservoirSimWellsPartMgr::clearGeometryCache()
|
2012-05-18 02:45:23 -05:00
|
|
|
{
|
2013-04-12 02:20:40 -05:00
|
|
|
m_wellPipesPartMgrs.clear();
|
|
|
|
m_wellHeadPartMgrs.clear();
|
2017-03-13 05:35:49 -05:00
|
|
|
m_wellSpheresPartMgrs.clear();
|
|
|
|
|
2012-05-18 02:45:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2017-03-13 05:05:46 -05:00
|
|
|
void RivReservoirSimWellsPartMgr::scheduleGeometryRegen()
|
2012-05-18 02:45:23 -05:00
|
|
|
{
|
|
|
|
for (size_t wIdx = 0; wIdx != m_wellPipesPartMgrs.size(); ++ wIdx)
|
|
|
|
{
|
2013-04-12 02:20:40 -05:00
|
|
|
m_wellPipesPartMgrs[wIdx]->scheduleGeometryRegen();
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t wIdx = 0; wIdx != m_wellHeadPartMgrs.size(); ++ wIdx)
|
|
|
|
{
|
|
|
|
//m_wellHeadPartMgrs[wIdx]->scheduleGeometryRegen(scaleTransform);
|
2012-05-18 02:45:23 -05:00
|
|
|
}
|
2017-03-13 05:35:49 -05:00
|
|
|
|
|
|
|
m_wellSpheresPartMgrs.clear();
|
2012-05-18 02:45:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2017-03-13 05:05:46 -05:00
|
|
|
void RivReservoirSimWellsPartMgr::setScaleTransform(cvf::Transform * scaleTransform)
|
2012-05-18 02:45:23 -05:00
|
|
|
{
|
|
|
|
m_scaleTransform = scaleTransform;
|
|
|
|
|
|
|
|
for (size_t wIdx = 0; wIdx != m_wellPipesPartMgrs.size(); ++ wIdx)
|
|
|
|
{
|
|
|
|
m_wellPipesPartMgrs[wIdx]->setScaleTransform(scaleTransform);
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t wIdx = 0; wIdx != m_wellHeadPartMgrs.size(); ++ wIdx)
|
|
|
|
{
|
|
|
|
m_wellHeadPartMgrs[wIdx]->setScaleTransform(scaleTransform);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-12 02:20:40 -05:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2017-03-13 05:05:46 -05:00
|
|
|
void RivReservoirSimWellsPartMgr::appendDynamicGeometryPartsToModel(cvf::ModelBasicList* model, size_t frameIndex)
|
2012-05-18 02:45:23 -05:00
|
|
|
{
|
2013-08-08 10:15:17 -05:00
|
|
|
if (!m_reservoirView->wellCollection()->isActive()) return;
|
2012-05-18 02:45:23 -05:00
|
|
|
|
2013-04-25 02:07:29 -05:00
|
|
|
if (m_reservoirView->wellCollection()->wells.size() != m_wellPipesPartMgrs.size())
|
|
|
|
{
|
2013-04-12 02:20:40 -05:00
|
|
|
clearGeometryCache();
|
|
|
|
|
|
|
|
for (size_t i = 0; i < m_reservoirView->wellCollection()->wells.size(); ++i)
|
|
|
|
{
|
2017-01-03 03:09:57 -06:00
|
|
|
RivSimWellPipesPartMgr * wppmgr = new RivSimWellPipesPartMgr(m_reservoirView, m_reservoirView->wellCollection()->wells[i]);
|
2013-04-12 02:20:40 -05:00
|
|
|
m_wellPipesPartMgrs.push_back(wppmgr);
|
|
|
|
wppmgr->setScaleTransform(m_scaleTransform.p());
|
|
|
|
|
2013-04-19 01:02:36 -05:00
|
|
|
RivWellHeadPartMgr* wellHeadMgr = new RivWellHeadPartMgr(m_reservoirView, m_reservoirView->wellCollection()->wells[i]);
|
2013-04-12 02:20:40 -05:00
|
|
|
m_wellHeadPartMgrs.push_back(wellHeadMgr);
|
|
|
|
wellHeadMgr->setScaleTransform(m_scaleTransform.p());
|
|
|
|
}
|
2013-04-25 02:07:29 -05:00
|
|
|
}
|
2013-04-12 02:20:40 -05:00
|
|
|
|
2013-04-25 02:07:29 -05:00
|
|
|
for (size_t wIdx = 0; wIdx != m_wellPipesPartMgrs.size(); ++ wIdx)
|
|
|
|
{
|
|
|
|
m_wellPipesPartMgrs[wIdx]->appendDynamicGeometryPartsToModel(model, frameIndex);
|
|
|
|
m_wellHeadPartMgrs[wIdx]->appendDynamicGeometryPartsToModel(model, frameIndex);
|
|
|
|
}
|
2017-03-13 05:35:49 -05:00
|
|
|
|
|
|
|
// Well spheres
|
|
|
|
|
|
|
|
if (m_reservoirView->wellCollection()->wells.size() != m_wellSpheresPartMgrs.size())
|
|
|
|
{
|
|
|
|
m_wellSpheresPartMgrs.clear();
|
|
|
|
|
|
|
|
for (RimEclipseWell* rimWell : m_reservoirView->wellCollection()->wells())
|
|
|
|
{
|
|
|
|
RivWellSpheresPartMgr* wppmgr = new RivWellSpheresPartMgr(m_reservoirView, rimWell);
|
|
|
|
m_wellSpheresPartMgrs.push_back(wppmgr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (size_t wIdx = 0; wIdx < m_wellSpheresPartMgrs.size(); wIdx++)
|
|
|
|
{
|
|
|
|
if (m_reservoirView->wellCollection()->wells[wIdx]->isWellSpheresVisible(frameIndex))
|
|
|
|
{
|
|
|
|
m_wellSpheresPartMgrs[wIdx]->appendDynamicGeometryPartsToModel(model, frameIndex);
|
|
|
|
}
|
|
|
|
}
|
2013-04-12 02:20:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2017-03-13 05:05:46 -05:00
|
|
|
void RivReservoirSimWellsPartMgr::updatePipeResultColor(size_t frameIndex)
|
2013-04-12 02:20:40 -05:00
|
|
|
{
|
|
|
|
for (size_t wIdx = 0; wIdx != m_wellPipesPartMgrs.size(); ++ wIdx)
|
2012-05-18 02:45:23 -05:00
|
|
|
{
|
2013-04-12 02:20:40 -05:00
|
|
|
m_wellPipesPartMgrs[wIdx]->updatePipeResultColor( frameIndex);
|
2012-05-18 02:45:23 -05:00
|
|
|
}
|
|
|
|
}
|
2013-04-12 02:20:40 -05:00
|
|
|
|
2015-11-17 10:19:25 -06:00
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2017-03-13 05:05:46 -05:00
|
|
|
const std::vector< std::vector <cvf::Vec3d> >* RivReservoirSimWellsPartMgr::centerLineOfWellBranches(int wellIdx)
|
2015-11-17 10:19:25 -06:00
|
|
|
{
|
2015-11-18 08:50:15 -06:00
|
|
|
if (wellIdx < static_cast<int>(m_wellPipesPartMgrs.size()))
|
2015-11-17 10:19:25 -06:00
|
|
|
{
|
|
|
|
return &(m_wellPipesPartMgrs[wellIdx]->centerLineOfWellBranches());
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|