mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
* Experiments for supporting visualization of new ODB files from WIA workflow * Some more experiments to get odb working for wia results * More work in progress, experimenting to get wellIA result files to load properly * Make sure all part geometries use the same global bounding box * Clean up code * Add some safeguards for data calculations Move parts below grid in project tree * Fix warnings * Add support for C3D8RT elements Add some more safeguards for missing data Remove strange part handling * Support elements with reduced number of integration points by pretending to have 8. * Change integration point mapping to correct order (ref. Stein and Abaqus 2019 doc) * Do not allocate too much memory for element nodal results for 20 element node types * Code cleanup. Revert back to old integration point numbering scheme (ref. Stein) * And, another integration point order update... * Update comments
113 lines
3.9 KiB
C++
113 lines
3.9 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2021- Equinor 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 <http://www.gnu.org/licenses/gpl.html>
|
|
// for more details.
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
#include "RimGeoMechPartCollection.h"
|
|
|
|
#include "RigFemPartCollection.h"
|
|
#include "RigGeoMechCaseData.h"
|
|
|
|
#include "RimGeoMechCase.h"
|
|
#include "RimGeoMechPart.h"
|
|
|
|
#include "RiaLogging.h"
|
|
|
|
#include "cafPdmFieldScriptingCapability.h"
|
|
#include "cafPdmObjectScriptingCapability.h"
|
|
|
|
CAF_PDM_SOURCE_INIT( RimGeoMechPartCollection, "GeoMechPartCollection" );
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimGeoMechPartCollection::RimGeoMechPartCollection()
|
|
: m_case( nullptr )
|
|
{
|
|
CAF_PDM_InitScriptableObject( "Parts", ":/GeoMechCase24x24.png", "", "" );
|
|
|
|
CAF_PDM_InitScriptableFieldNoDefault( &m_parts, "Parts", "Parts", "", "", "" );
|
|
m_parts.uiCapability()->setUiTreeHidden( true );
|
|
|
|
setDeletable( false );
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
RimGeoMechPartCollection::~RimGeoMechPartCollection()
|
|
{
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
void RimGeoMechPartCollection::syncWithCase( RimGeoMechCase* geoCase )
|
|
{
|
|
m_case = geoCase;
|
|
|
|
if ( geoCase && geoCase->geoMechData() && geoCase->geoMechData()->femParts() )
|
|
{
|
|
const int count = geoCase->geoMechData()->femParts()->partCount();
|
|
|
|
if ( count != (int)m_parts.size() )
|
|
{
|
|
m_parts.clear();
|
|
|
|
for ( int i = 0; i < count; i++ )
|
|
{
|
|
const auto& femPart = geoCase->geoMechData()->femParts()->part( i );
|
|
|
|
RimGeoMechPart* part = new RimGeoMechPart();
|
|
part->setPartId( i );
|
|
part->setName( QString( femPart->name().c_str() ) );
|
|
part->setCheckState( femPart->enabled() );
|
|
m_parts.push_back( part );
|
|
}
|
|
}
|
|
}
|
|
updateConnectedEditors();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
std::vector<RimGeoMechPart*> RimGeoMechPartCollection::parts() const
|
|
{
|
|
return m_parts.childObjects();
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RimGeoMechPartCollection::shouldBeVisibleInTree() const
|
|
{
|
|
return m_parts.size() > 1;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RimGeoMechPartCollection::isPartEnabled( int partId ) const
|
|
{
|
|
for ( const auto& part : m_parts )
|
|
{
|
|
if ( part->partId() == partId ) return part->isChecked();
|
|
}
|
|
|
|
return false;
|
|
}
|