#9099 Thermal Fracture Import: include perimter nodes.

This commit is contained in:
Kristian Bendiksen
2022-09-15 08:19:41 +02:00
committed by Magne Sjaastad
parent 089a02f6ce
commit 4e6e3ecd31
8 changed files with 218 additions and 59 deletions
@@ -110,12 +110,12 @@ std::vector<std::pair<QString, QString>> RigThermalFractureDefinition::getProper
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
void RigThermalFractureDefinition::appendPropertyValue( int propertyIndex, int nodeIndex, int timeStepIndex, double value )
void RigThermalFractureDefinition::appendPropertyValue( int propertyIndex, int nodeIndex, double value )
{
CAF_ASSERT( propertyIndex >= 0 );
CAF_ASSERT( propertyIndex < static_cast<int>( m_results.size() ) );
m_results[propertyIndex].appendValue( nodeIndex, timeStepIndex, value );
m_results[propertyIndex].appendValue( nodeIndex, value );
}
//--------------------------------------------------------------------------------------------------