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.
|
|
|
|
//
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#include "RivReservoirPipesPartMgr.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"
|
2015-09-25 08:57:43 -05:00
|
|
|
#include "RivWellPipesPartMgr.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
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2015-05-21 03:05:33 -05:00
|
|
|
RivReservoirPipesPartMgr::RivReservoirPipesPartMgr(RimEclipseView* reservoirView)
|
2012-05-18 02:45:23 -05:00
|
|
|
{
|
|
|
|
m_reservoirView = reservoirView;
|
|
|
|
|
|
|
|
m_scaleTransform = new cvf::Transform();
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
RivReservoirPipesPartMgr::~RivReservoirPipesPartMgr()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2013-04-12 02:20:40 -05:00
|
|
|
void RivReservoirPipesPartMgr::clearGeometryCache()
|
2012-05-18 02:45:23 -05:00
|
|
|
{
|
2013-04-12 02:20:40 -05:00
|
|
|
m_wellPipesPartMgrs.clear();
|
|
|
|
m_wellHeadPartMgrs.clear();
|
2012-05-18 02:45:23 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
2013-04-12 02:20:40 -05:00
|
|
|
void RivReservoirPipesPartMgr::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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RivReservoirPipesPartMgr::setScaleTransform(cvf::Transform * scaleTransform)
|
|
|
|
{
|
|
|
|
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
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RivReservoirPipesPartMgr::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
|
|
|
|
2015-06-25 05:09:16 -05:00
|
|
|
if (m_reservoirView->wellCollection()->wellPipeVisibility() == RimEclipseWellCollection::PIPES_FORCE_ALL_OFF) return;
|
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)
|
|
|
|
{
|
|
|
|
RivWellPipesPartMgr * wppmgr = new RivWellPipesPartMgr(m_reservoirView, m_reservoirView->wellCollection()->wells[i]);
|
|
|
|
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);
|
|
|
|
}
|
2013-04-12 02:20:40 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
void RivReservoirPipesPartMgr::updatePipeResultColor(size_t frameIndex)
|
|
|
|
{
|
|
|
|
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
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
///
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
|
|
const std::vector< std::vector <cvf::Vec3d> >* RivReservoirPipesPartMgr::centerLineOfWellBranches(int wellIdx)
|
|
|
|
{
|
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;
|
|
|
|
}
|
|
|
|
|