mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-01 03:37:15 -06:00
79 lines
2.7 KiB
C++
79 lines
2.7 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2018- 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 "gtest/gtest.h"
|
|
|
|
#include "RifReaderMockModel.h"
|
|
|
|
#include "RigEclipseCaseData.h"
|
|
#include "RigGridManager.h"
|
|
#include "RigMainGrid.h"
|
|
#include "Well/RigEclipseWellLogExtractor.h"
|
|
#include "Well/RigWellPath.h"
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
TEST( RigEclipseWellLogExtractor, ShortWellPathInsideOneCell )
|
|
{
|
|
cvf::ref<RigEclipseCaseData> reservoir = new RigEclipseCaseData( nullptr );
|
|
|
|
{
|
|
cvf::ref<RifReaderMockModel> mockFileInterface = new RifReaderMockModel;
|
|
|
|
mockFileInterface->setWorldCoordinates( cvf::Vec3d( 10, 10, 10 ), cvf::Vec3d( 20, 20, 20 ) );
|
|
mockFileInterface->setGridPointDimensions( cvf::Vec3st( 4, 5, 6 ) );
|
|
mockFileInterface->enableWellData( false );
|
|
|
|
mockFileInterface->open( "", reservoir.p() );
|
|
|
|
reservoir->mainGrid()->computeCachedData();
|
|
}
|
|
|
|
EXPECT_FALSE( reservoir->mainGrid()->totalCellCount() == 0 );
|
|
|
|
auto firstCell = reservoir->mainGrid()->cell( 0 );
|
|
auto center = firstCell.center();
|
|
|
|
cvf::ref<RigWellPath> wellPathGeometry = new RigWellPath;
|
|
{
|
|
std::vector<cvf::Vec3d> wellPathPoints;
|
|
std::vector<double> mdValues;
|
|
|
|
{
|
|
double offset = 0.0;
|
|
wellPathPoints.push_back( center );
|
|
mdValues.push_back( offset );
|
|
}
|
|
|
|
{
|
|
double offset = 0.1;
|
|
wellPathPoints.push_back( center + cvf::Vec3d( 0, 0, offset ) );
|
|
mdValues.push_back( offset );
|
|
}
|
|
|
|
wellPathGeometry->setWellPathPoints( wellPathPoints );
|
|
wellPathGeometry->setMeasuredDepths( mdValues );
|
|
}
|
|
|
|
cvf::ref<RigEclipseWellLogExtractor> e = new RigEclipseWellLogExtractor( reservoir.p(), wellPathGeometry.p(), "" );
|
|
|
|
auto intersections = e->cellIntersectionInfosAlongWellPath();
|
|
EXPECT_FALSE( intersections.empty() );
|
|
}
|