mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Improve grid cell calculator
* Use full name for grid case view * FIx signed / unsigned issue * Support drag/drop of file names into Main Window * Add function to check if two grid cases are of equal size * Result Info: Show cell result text for all linked views * Improve how to specify cells to be included in calculation - move view filter to calculation - improve how to assign values to non-visible cells - avoid computation between grids of different size Closes #9482
This commit is contained in:
@@ -48,7 +48,7 @@ bool RifThermalFractureTemplateSurfaceExporter::writeToFile( gsl::not_null<RimTh
|
||||
out.setRealNumberPrecision( 16 );
|
||||
|
||||
auto nameAndUnits = fractureData->getPropertyNamesUnits();
|
||||
int numProperties = nameAndUnits.size();
|
||||
int numProperties = static_cast<int>( nameAndUnits.size() );
|
||||
|
||||
for ( auto [name, unit] : nameAndUnits )
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user