///////////////////////////////////////////////////////////////////////////////// // // Copyright (C) 2017 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 // for more details. // ///////////////////////////////////////////////////////////////////////////////// #include "RicCellRangeUi.h" #include "RicExportCarfinUi.h" #include "RifReaderInterface.h" #include "RigActiveCellInfo.h" #include "RigEclipseCaseData.h" #include "RigReservoirGridTools.h" #include "RimCase.h" #include "RimEclipseCase.h" #include "cafPdmUiSliderEditor.h" #include "cvfStructGrid.h" CAF_PDM_SOURCE_INIT(RicCellRangeUi, "RicCellRangeUi"); //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RicCellRangeUi::RicCellRangeUi() { CAF_PDM_InitObject("Cell Range", "", "", ""); CAF_PDM_InitFieldNoDefault(&m_case, "Case", "Case", "", "", ""); m_case.uiCapability()->setUiHidden(true); CAF_PDM_InitField(&m_gridIndex, "GridIndex", 0, "Grid", "", "", ""); CAF_PDM_InitField(&m_startIndexI, "StartIndexI", 1, "Start Index I", "", "", ""); CAF_PDM_InitField(&m_startIndexJ, "StartIndexJ", 1, "Start Index J", "", "", ""); CAF_PDM_InitField(&m_startIndexK, "StartIndexK", 1, "Start Index K", "", "", ""); CAF_PDM_InitField(&m_cellCountI, "CellCountI", 1, "Cell Count I", "", "", ""); CAF_PDM_InitField(&m_cellCountJ, "CellCountJ", 1, "Cell Count J", "", "", ""); CAF_PDM_InitField(&m_cellCountK, "CellCountK", 1, "Cell Count K", "", "", ""); m_startIndexI.uiCapability()->setUiEditorTypeName(caf::PdmUiSliderEditor::uiEditorTypeName()); m_startIndexJ.uiCapability()->setUiEditorTypeName(caf::PdmUiSliderEditor::uiEditorTypeName()); m_startIndexK.uiCapability()->setUiEditorTypeName(caf::PdmUiSliderEditor::uiEditorTypeName()); m_cellCountI.uiCapability()->setUiEditorTypeName( caf::PdmUiSliderEditor::uiEditorTypeName()); m_cellCountJ.uiCapability()->setUiEditorTypeName( caf::PdmUiSliderEditor::uiEditorTypeName()); m_cellCountK.uiCapability()->setUiEditorTypeName( caf::PdmUiSliderEditor::uiEditorTypeName()); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicCellRangeUi::setCase(RimCase* rimCase) { if (m_case != rimCase) { m_case = rimCase; setDefaultValues(); } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- caf::VecIjk RicCellRangeUi::start() const { return caf::VecIjk(m_startIndexI, m_startIndexJ, m_startIndexK); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- caf::VecIjk RicCellRangeUi::count() const { return caf::VecIjk(m_cellCountI, m_cellCountJ, m_cellCountK); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- QString RicCellRangeUi::gridName() const { if (m_gridIndex() == 0) return ""; return RigReservoirGridTools::gridName(m_case, m_gridIndex()); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicCellRangeUi::defineEditorAttribute(const caf::PdmFieldHandle* field, QString uiConfigName, caf::PdmUiEditorAttribute* attribute) { caf::PdmUiSliderEditorAttribute* myAttr = dynamic_cast(attribute); if (!myAttr) { return; } const cvf::StructGridInterface* grid = RigReservoirGridTools::gridByIndex(m_case, m_gridIndex()); if (grid) { if (field == &m_startIndexI || field == &m_cellCountI) { myAttr->m_minimum = 1; myAttr->m_maximum = static_cast(grid->cellCountI()); } else if (field == &m_startIndexJ || field == &m_cellCountJ) { myAttr->m_minimum = 1; myAttr->m_maximum = static_cast(grid->cellCountJ()); } else if (field == &m_startIndexK || field == &m_cellCountK) { myAttr->m_minimum = 1; myAttr->m_maximum = static_cast(grid->cellCountK()); } } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- QList RicCellRangeUi::calculateValueOptions(const caf::PdmFieldHandle* fieldNeedingOptions, bool* useOptionsOnly) { QList options; if (useOptionsOnly) (*useOptionsOnly) = true; if (&m_gridIndex == fieldNeedingOptions) { for (int gIdx = 0; gIdx < RigReservoirGridTools::gridCount(m_case); ++gIdx) { QString gridName; gridName += RigReservoirGridTools::gridName(m_case, gIdx); if (gIdx == 0) { if (gridName.isEmpty()) gridName += "Main Grid"; else gridName += " (Main Grid)"; } caf::PdmOptionItemInfo item(gridName, (int)gIdx); options.push_back(item); } } return options; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicCellRangeUi::fieldChangedByUi(const caf::PdmFieldHandle* changedField, const QVariant& oldValue, const QVariant& newValue) { clampValues(); if (changedField == &m_gridIndex) { setDefaultValues(); updateLegendText(); } // If this object is contained in another object, make sure the other object is updated RicExportCarfinUi* exportCarfin = nullptr; this->firstAncestorOrThisOfType(exportCarfin); if (exportCarfin) { exportCarfin->uiCapability()->updateConnectedEditors(); } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicCellRangeUi::clampValues() { if (!m_case) return; const cvf::StructGridInterface* grid = RigReservoirGridTools::gridByIndex(m_case, m_gridIndex()); if (!grid) return; m_cellCountI = cvf::Math::clamp(m_cellCountI.v(), 1, static_cast(grid->cellCountI())); m_startIndexI = cvf::Math::clamp(m_startIndexI.v(), 1, static_cast(grid->cellCountI())); m_cellCountJ = cvf::Math::clamp(m_cellCountJ.v(), 1, static_cast(grid->cellCountJ())); m_startIndexJ = cvf::Math::clamp(m_startIndexJ.v(), 1, static_cast(grid->cellCountJ())); m_cellCountK = cvf::Math::clamp(m_cellCountK.v(), 1, static_cast(grid->cellCountK())); m_startIndexK = cvf::Math::clamp(m_startIndexK.v(), 1, static_cast(grid->cellCountK())); } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicCellRangeUi::setDefaultValues() { const cvf::StructGridInterface* grid = RigReservoirGridTools::gridByIndex(m_case, m_gridIndex()); if (!grid) return; RigActiveCellInfo* actCellInfo = this->activeCellInfo(); const cvf::StructGridInterface* mainGrid = RigReservoirGridTools::mainGrid(m_case); if (grid == mainGrid && actCellInfo) { cvf::Vec3st min, max; actCellInfo->IJKBoundingBox(min, max); // Adjust to Eclipse indexing min.x() = min.x() + 1; min.y() = min.y() + 1; min.z() = min.z() + 1; max.x() = max.x() + 1; max.y() = max.y() + 1; max.z() = max.z() + 1; m_startIndexI = static_cast(min.x()); m_startIndexJ = static_cast(min.y()); m_startIndexK = static_cast(min.z()); m_cellCountI = static_cast(max.x() - min.x() + 1); m_cellCountJ = static_cast(max.y() - min.y() + 1); m_cellCountK = static_cast(max.z() - min.z() + 1); } else { m_startIndexI = 1; m_startIndexJ = 1; m_startIndexK = 1; m_cellCountI = static_cast(grid->cellCountI()); m_cellCountJ = static_cast(grid->cellCountJ()); m_cellCountK = static_cast(grid->cellCountK()); } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- RigActiveCellInfo* RicCellRangeUi::activeCellInfo() const { RimEclipseCase* rimEclipeCase = dynamic_cast(m_case()); if (rimEclipeCase && rimEclipeCase->eclipseCaseData()) { return rimEclipeCase->eclipseCaseData()->activeCellInfo(RiaDefines::MATRIX_MODEL); } return nullptr; } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicCellRangeUi::updateLegendText() { const cvf::StructGridInterface* grid = RigReservoirGridTools::gridByIndex(m_case, m_gridIndex()); const cvf::StructGridInterface* mainGrid = RigReservoirGridTools::mainGrid(m_case); RigActiveCellInfo* actCellInfo = activeCellInfo(); if (grid == mainGrid && actCellInfo) { cvf::Vec3st min, max; actCellInfo->IJKBoundingBox(min, max); // Adjust to Eclipse indexing min.x() = min.x() + 1; min.y() = min.y() + 1; min.z() = min.z() + 1; max.x() = max.x() + 1; max.y() = max.y() + 1; max.z() = max.z() + 1; m_startIndexI.uiCapability()->setUiName(QString("I Start (%1)").arg(min.x())); m_startIndexJ.uiCapability()->setUiName(QString("J Start (%1)").arg(min.y())); m_startIndexK.uiCapability()->setUiName(QString("K Start (%1)").arg(min.z())); m_cellCountI.uiCapability()->setUiName(QString(" Width (%1)").arg(max.x() - min.x() + 1)); m_cellCountJ.uiCapability()->setUiName(QString(" Width (%1)").arg(max.y() - min.y() + 1)); m_cellCountK.uiCapability()->setUiName(QString(" Width (%1)").arg(max.z() - min.z() + 1)); } else { m_startIndexI.uiCapability()->setUiName(QString("I Start")); m_startIndexJ.uiCapability()->setUiName(QString("J Start")); m_startIndexK.uiCapability()->setUiName(QString("K Start")); m_cellCountI.uiCapability()->setUiName(QString(" Width")); m_cellCountJ.uiCapability()->setUiName(QString(" Width")); m_cellCountK.uiCapability()->setUiName(QString(" Width")); } } //-------------------------------------------------------------------------------------------------- /// //-------------------------------------------------------------------------------------------------- void RicCellRangeUi::defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering& uiOrdering) { uiOrdering.add(&m_gridIndex); uiOrdering.add(&m_startIndexI); uiOrdering.add(&m_cellCountI); uiOrdering.add(&m_startIndexJ); uiOrdering.add(&m_cellCountJ); uiOrdering.add(&m_startIndexK); uiOrdering.add(&m_cellCountK); updateLegendText(); }