mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-26 00:06:49 -06:00
176 lines
5.9 KiB
C++
176 lines
5.9 KiB
C++
|
/////////////////////////////////////////////////////////////////////////////////
|
||
|
//
|
||
|
// Copyright (C) Statoil ASA, Ceetron Solutions 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 "RivReservoirFaultsPartMgr.h"
|
||
|
|
||
|
#include "cvfPart.h"
|
||
|
#include "cvfModelBasicList.h"
|
||
|
#include "cvfColor3.h"
|
||
|
#include "cvfTransform.h"
|
||
|
|
||
|
#include "cafPdmFieldCvfColor.h"
|
||
|
|
||
|
#include "RimFaultCollection.h"
|
||
|
|
||
|
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
RivReservoirFaultsPartMgr::RivReservoirFaultsPartMgr(const RigGridBase* grid, size_t gridIdx, const RimFaultCollection* faultCollection)
|
||
|
: m_gridIdx(gridIdx),
|
||
|
m_grid(grid),
|
||
|
m_faultCollection(faultCollection)
|
||
|
{
|
||
|
CVF_ASSERT(grid);
|
||
|
|
||
|
if (faultCollection)
|
||
|
{
|
||
|
for (size_t i = 0; i < faultCollection->faults.size(); i++)
|
||
|
{
|
||
|
m_faultParts.push_back(new RivFaultPartMgr(grid, faultCollection->faults[i]));
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
RivReservoirFaultsPartMgr::~RivReservoirFaultsPartMgr()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
void RivReservoirFaultsPartMgr::setTransform(cvf::Transform* scaleTransform)
|
||
|
{
|
||
|
m_scaleTransform = scaleTransform;
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
void RivReservoirFaultsPartMgr::setCellVisibility(cvf::UByteArray* cellVisibilities)
|
||
|
{
|
||
|
CVF_ASSERT(cellVisibilities);
|
||
|
|
||
|
for (size_t i = 0; i < m_faultParts.size(); i++)
|
||
|
{
|
||
|
m_faultParts.at(i)->setCellVisibility(cellVisibilities);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
void RivReservoirFaultsPartMgr::appendPartsToModel(cvf::ModelBasicList* model)
|
||
|
{
|
||
|
CVF_ASSERT(model != NULL);
|
||
|
|
||
|
if (!m_faultCollection) return;
|
||
|
|
||
|
// Faults are only present for main grid
|
||
|
if (!m_grid->isMainGrid()) return;
|
||
|
|
||
|
if (!m_faultCollection->showFaultCollection()) return;
|
||
|
|
||
|
// Check match between model fault count and fault parts
|
||
|
CVF_ASSERT(m_faultCollection->faults.size() == m_faultParts.size());
|
||
|
|
||
|
cvf::ModelBasicList parts;
|
||
|
|
||
|
for (size_t i = 0; i < m_faultCollection->faults.size(); i++)
|
||
|
{
|
||
|
const RimFault* rimFault = m_faultCollection->faults[i];
|
||
|
|
||
|
if (rimFault->showFault())
|
||
|
{
|
||
|
cvf::ref<RivFaultPartMgr> rivFaultPart = m_faultParts[i];
|
||
|
CVF_ASSERT(rivFaultPart.notNull());
|
||
|
|
||
|
if (m_faultCollection->showFaultFaces())
|
||
|
{
|
||
|
rivFaultPart->appendNativeFaultFacesToModel(&parts);
|
||
|
}
|
||
|
|
||
|
if (m_faultCollection->showOppositeFaultFaces())
|
||
|
{
|
||
|
rivFaultPart->appendOppositeFaultFacesToModel(&parts);
|
||
|
}
|
||
|
|
||
|
if (m_faultCollection->showFaultLabel())
|
||
|
{
|
||
|
rivFaultPart->appendLabelPartsToModel(&parts);
|
||
|
}
|
||
|
|
||
|
if (m_faultCollection->showFaultFaces() || m_faultCollection->showOppositeFaultFaces())
|
||
|
{
|
||
|
rivFaultPart->appendMeshLinePartsToModel(&parts);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
for (size_t i = 0; i < parts.partCount(); i++)
|
||
|
{
|
||
|
cvf::Part* part = parts.part(i);
|
||
|
part->setTransform(m_scaleTransform.p());
|
||
|
|
||
|
model->addPart(part);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
void RivReservoirFaultsPartMgr::updateCellColor(cvf::Color4f color)
|
||
|
{
|
||
|
CVF_UNUSED(color);
|
||
|
|
||
|
// NB color is not used, as the color is defined per fault
|
||
|
|
||
|
for (size_t i = 0; i < m_faultParts.size(); i++)
|
||
|
{
|
||
|
m_faultParts[i]->applySingleColorEffect();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
void RivReservoirFaultsPartMgr::updateCellResultColor(size_t timeStepIndex, RimResultSlot* cellResultSlot)
|
||
|
{
|
||
|
for (size_t i = 0; i < m_faultParts.size(); i++)
|
||
|
{
|
||
|
m_faultParts[i]->updateCellResultColor(timeStepIndex, cellResultSlot);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
///
|
||
|
//--------------------------------------------------------------------------------------------------
|
||
|
void RivReservoirFaultsPartMgr::updateCellEdgeResultColor(size_t timeStepIndex, RimResultSlot* cellResultSlot, RimCellEdgeResultSlot* cellEdgeResultSlot)
|
||
|
{
|
||
|
for (size_t i = 0; i < m_faultParts.size(); i++)
|
||
|
{
|
||
|
m_faultParts[i]->updateCellEdgeResultColor(timeStepIndex, cellResultSlot, cellEdgeResultSlot);
|
||
|
}
|
||
|
}
|
||
|
|