///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2011- Statoil ASA // Copyright (C) 2013- Ceetron Solutions AS // Copyright (C) 2011-2012 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #include "RivSimWellPipesPartMgr.h" #include "RigEclipseCaseData.h" #include "RigCell.h" #include "RigMainGrid.h" #include "RigSimulationWellCenterLineCalculator.h" #include "Rim3dOverlayInfoConfig.h" #include "RimCellEdgeColors.h" #include "RimCellRangeFilterCollection.h" #include "RimEclipseCase.h" #include "RimEclipseCellColors.h" #include "RimEclipsePropertyFilterCollection.h" #include "Rim3dView.h" #include "RimReservoirCellResultsStorage.h" #include "RimSimWellInView.h" #include "RimSimWellInViewCollection.h" #include "RivPipeGeometryGenerator.h" #include "RivWellPathSourceInfo.h" #include "RivSimWellPipeSourceInfo.h" #include "cafEffectGenerator.h" #include "cafPdmFieldCvfColor.h" #include "cafPdmFieldCvfMat4d.h" #include "cvfDrawableGeo.h" #include "cvfModelBasicList.h" #include "cvfPart.h" #include "cvfRay.h" #include "cvfScalarMapperDiscreteLinear.h" #include "cvfTransform.h" #include "cafDisplayCoordTransform.h" #include "RivSectionFlattner.h" #include "Rim2dIntersectionView.h" #include "RimIntersection.h" //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RivSimWellPipesPartMgr::RivSimWellPipesPartMgr(RimSimWellInView* well) : m_rimWell(well) { } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RivSimWellPipesPartMgr::~RivSimWellPipesPartMgr() { } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- Rim3dView* RivSimWellPipesPartMgr::viewWithSettings() { Rim3dView* view = nullptr; if (m_rimWell) m_rimWell->firstAncestorOrThisOfType(view); return view; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RivSimWellPipesPartMgr::appendDynamicGeometryPartsToModel(cvf::ModelBasicList* model, size_t frameIndex, const caf::DisplayCoordTransform* displayXf) { if (!viewWithSettings()) return; if (!m_rimWell->isWellPipeVisible(frameIndex)) return; buildWellPipeParts(displayXf, false, 0.0, -1); std::list::iterator it; for (it = m_wellBranches.begin(); it != m_wellBranches.end(); ++it) { if (it->m_surfacePart.notNull()) { model->addPart(it->m_surfacePart.p()); } if (it->m_centerLinePart.notNull()) { model->addPart(it->m_centerLinePart.p()); } } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RivSimWellPipesPartMgr::appendFlattenedDynamicGeometryPartsToModel(cvf::ModelBasicList* model, size_t frameIndex, const caf::DisplayCoordTransform* displayXf, double flattenedIntersectionExtentLength, int branchIndex) { if (!viewWithSettings()) return; if (!m_rimWell->isWellPipeVisible(frameIndex)) return; buildWellPipeParts(displayXf, true, flattenedIntersectionExtentLength, branchIndex); std::list::iterator it; for (it = m_wellBranches.begin(); it != m_wellBranches.end(); ++it) { if (it->m_surfacePart.notNull()) { model->addPart(it->m_surfacePart.p()); } if (it->m_centerLinePart.notNull()) { model->addPart(it->m_centerLinePart.p()); } } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RivSimWellPipesPartMgr::buildWellPipeParts(const caf::DisplayCoordTransform* displayXf, bool doFlatten, double flattenedIntersectionExtentLength, int branchIndex) { if (!this->viewWithSettings()) return; m_wellBranches.clear(); m_pipeBranchesCLCoords.clear(); std::vector< std::vector > pipeBranchesCellIds; m_rimWell->calculateWellPipeStaticCenterLine(m_pipeBranchesCLCoords, pipeBranchesCellIds); double pipeRadius = m_rimWell->pipeRadius(); int crossSectionVertexCount = m_rimWell->pipeCrossSectionVertexCount(); // Take branch selection into account size_t branchIdxStart = 0; size_t branchIdxStop = pipeBranchesCellIds.size(); if (m_pipeBranchesCLCoords.size() > 1) { if (branchIndex >= 0 && branchIndex < branchIdxStop) { branchIdxStart = branchIndex; branchIdxStop = branchIdxStart + 1; } } cvf::Vec3d flattenedStartOffset = cvf::Vec3d::ZERO; if ( m_pipeBranchesCLCoords.size() > branchIdxStart && m_pipeBranchesCLCoords[branchIdxStart].size() ) { flattenedStartOffset = { 0.0, 0.0, m_pipeBranchesCLCoords[branchIdxStart][0].z() }; } for (size_t brIdx = branchIdxStart; brIdx sourceInfo = new RivSimWellPipeSourceInfo(m_rimWell, brIdx); m_wellBranches.push_back(RivPipeBranchData()); RivPipeBranchData& pbd = m_wellBranches.back(); pbd.m_cellIds = pipeBranchesCellIds[brIdx]; pbd.m_pipeGeomGenerator = new RivPipeGeometryGenerator; pbd.m_pipeGeomGenerator->setRadius(pipeRadius); pbd.m_pipeGeomGenerator->setCrossSectionVertexCount(crossSectionVertexCount); cvf::ref cvfCoords = new cvf::Vec3dArray; cvfCoords->assign(m_pipeBranchesCLCoords[brIdx]); flattenedStartOffset.z() = m_pipeBranchesCLCoords[brIdx][0].z(); if (doFlatten) { std::vector flatningCSs = RivSectionFlattner::calculateFlatteningCSsForPolyline(m_pipeBranchesCLCoords[brIdx], cvf::Vec3d::Z_AXIS, flattenedStartOffset, &flattenedStartOffset); for (size_t cIdx = 0; cIdx < cvfCoords->size(); ++cIdx) { (*cvfCoords)[cIdx] = ((*cvfCoords)[cIdx]).getTransformedPoint(flatningCSs[cIdx]); (*cvfCoords)[cIdx] = displayXf->scaleToDisplaySize((*cvfCoords)[cIdx]); } } else { // Scale the centerline coordinates using the Z-scale transform of the grid and correct for the display offset. for ( size_t cIdx = 0; cIdx < cvfCoords->size(); ++cIdx ) { (*cvfCoords)[cIdx] = displayXf->transformToDisplayCoord((*cvfCoords)[cIdx]); } } pbd.m_pipeGeomGenerator->setPipeCenterCoords(cvfCoords.p()); pbd.m_surfaceDrawable = pbd.m_pipeGeomGenerator->createPipeSurface(); pbd.m_centerLineDrawable = pbd.m_pipeGeomGenerator->createCenterLine(); if (pbd.m_surfaceDrawable.notNull()) { pbd.m_surfacePart = new cvf::Part(0,"SimWellPipeSurface"); pbd.m_surfacePart->setDrawable(pbd.m_surfaceDrawable.p()); caf::SurfaceEffectGenerator surfaceGen(cvf::Color4f(m_rimWell->wellPipeColor()), caf::PO_1); cvf::ref eff = surfaceGen.generateCachedEffect(); pbd.m_surfacePart->setEffect(eff.p()); pbd.m_surfacePart->setSourceInfo(sourceInfo.p()); } if (pbd.m_centerLineDrawable.notNull()) { pbd.m_centerLinePart = new cvf::Part(0,"SimWellPipeCenterLine"); pbd.m_centerLinePart->setDrawable(pbd.m_centerLineDrawable.p()); caf::MeshEffectGenerator gen(m_rimWell->wellPipeColor()); cvf::ref eff = gen.generateCachedEffect(); pbd.m_centerLinePart->setEffect(eff.p()); } // Create slightly larger geometry for active (open) wells // This will avoid visual artifacts when two wells are located at the same position { pbd.m_pipeGeomGenerator->setRadius(pipeRadius * 1.1); pbd.m_largeSurfaceDrawable = pbd.m_pipeGeomGenerator->createPipeSurface(); } if (doFlatten) flattenedStartOffset += { 2*flattenedIntersectionExtentLength, 0.0, 0.0}; } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RivSimWellPipesPartMgr::updatePipeResultColor(size_t frameIndex) { if (m_rimWell == nullptr) return; RigSimWellData* simWellData = m_rimWell->simWellData(); if (simWellData == nullptr) return; if (!simWellData->hasWellResult(frameIndex)) return; // Or reset colors or something const double closed = -0.1, producing = 1.5, water = 2.5, hcInjection = 3.5; // Closed set to -0.1 instead of 0.5 to workaround bug in the scalar mapper. std::list::iterator brIt; const RigWellResultFrame& wResFrame = simWellData->wellResultFrame(frameIndex); std::vector wellCellStates; // Setup a scalar mapper cvf::ref scalarMapper = new cvf::ScalarMapperDiscreteLinear; { cvf::Color3ubArray legendColors; legendColors.resize(4); legendColors[0] = cvf::Color3ub(m_rimWell->wellPipeColor()); legendColors[1] = cvf::Color3::GREEN; legendColors[2] = cvf::Color3::BLUE; legendColors[3] = cvf::Color3::RED; scalarMapper->setColors(legendColors); scalarMapper->setRange(0.0, 4.0); scalarMapper->setLevelCount(4, true); } caf::ScalarMapperEffectGenerator surfEffGen(scalarMapper.p(), caf::PO_1); if (viewWithSettings() && viewWithSettings()->isLightingDisabled()) { surfEffGen.disableLighting(true); } cvf::ref scalarMapperSurfaceEffect = surfEffGen.generateUnCachedEffect(); caf::ScalarMapperMeshEffectGenerator meshEffGen(scalarMapper.p()); cvf::ref scalarMapperMeshEffect = meshEffGen.generateUnCachedEffect(); for (brIt = m_wellBranches.begin(); brIt != m_wellBranches.end(); ++brIt) { // Initialize well states to "closed" state wellCellStates.clear(); wellCellStates.resize(brIt->m_cellIds.size(), closed); RimSimWellInViewCollection* wellColl = nullptr; if (m_rimWell) { m_rimWell->firstAncestorOrThisOfType(wellColl); } if (wellColl && wellColl->showConnectionStatusColors()) { const std::vector & cellIds = brIt->m_cellIds; for (size_t wcIdx = 0; wcIdx < cellIds.size(); ++wcIdx) { // we need a faster lookup, I guess const RigWellResultPoint* wResCell = nullptr; if (cellIds[wcIdx].isCell()) { wResCell = wResFrame.findResultCell(cellIds[wcIdx].m_gridIndex, cellIds[wcIdx].m_gridCellIndex); } if (wResCell == nullptr) { // We cant find any state. This well cell is closed. } else { double cellState = closed; if (wResCell->m_isOpen) { switch (wResFrame.m_productionType) { case RigWellResultFrame::PRODUCER: cellState = producing; break; case RigWellResultFrame::OIL_INJECTOR: cellState = hcInjection; break; case RigWellResultFrame::GAS_INJECTOR: cellState = hcInjection; break; case RigWellResultFrame::WATER_INJECTOR: cellState = water; break; case RigWellResultFrame::UNDEFINED_PRODUCTION_TYPE: cellState = closed; break; } } wellCellStates[wcIdx] = cellState; } } } // Find or create texture coords array for pipe surface if (brIt->m_surfaceDrawable.notNull()) { cvf::ref surfTexCoords = const_cast(brIt->m_surfaceDrawable->textureCoordArray()); if (surfTexCoords.isNull()) { surfTexCoords = new cvf::Vec2fArray; } brIt->m_pipeGeomGenerator->pipeSurfaceTextureCoords(surfTexCoords.p(), wellCellStates, scalarMapper.p()); brIt->m_surfaceDrawable->setTextureCoordArray(surfTexCoords.p()); brIt->m_largeSurfaceDrawable->setTextureCoordArray(surfTexCoords.p()); if (wResFrame.m_isOpen) { // Use slightly larger geometry for open wells to avoid z-fighting when two wells are located at the same position brIt->m_surfacePart->setDrawable(brIt->m_largeSurfaceDrawable.p()); } else { brIt->m_surfacePart->setDrawable(brIt->m_surfaceDrawable.p()); } brIt->m_surfacePart->setEffect(scalarMapperSurfaceEffect.p()); } // Find or create texture coords array for pipe center line if (brIt->m_centerLineDrawable.notNull()) { cvf::ref lineTexCoords = const_cast(brIt->m_centerLineDrawable->textureCoordArray()); if (lineTexCoords.isNull()) { lineTexCoords = new cvf::Vec2fArray; } // Calculate new texture coordinates brIt->m_pipeGeomGenerator->centerlineTextureCoords( lineTexCoords.p(), wellCellStates, scalarMapper.p()); // Set the new texture coordinates brIt->m_centerLineDrawable->setTextureCoordArray( lineTexCoords.p()); // Set effects brIt->m_centerLinePart->setEffect(scalarMapperMeshEffect.p()); } } }