ResInsight/ApplicationLibCode/FileInterface/RifReaderEclipseInput.cpp

88 lines
3.1 KiB
C++
Raw Normal View History

2012-06-26 09:10:41 -05:00
/////////////////////////////////////////////////////////////////////////////////
//
2014-09-23 08:04:57 -05:00
// Copyright (C) 2011- Statoil ASA
// Copyright (C) 2013- Ceetron Solutions AS
// Copyright (C) 2011-2012 Ceetron AS
//
2012-06-26 09:10:41 -05:00
// 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.
//
2012-06-26 09:10:41 -05:00
// 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>
2012-06-26 09:10:41 -05:00
// for more details.
//
/////////////////////////////////////////////////////////////////////////////////
#include "RifReaderEclipseInput.h"
#include "RiaLogging.h"
2012-06-26 09:10:41 -05:00
#include "RifEclipseInputFileTools.h"
2017-01-10 02:51:39 -06:00
#include "RigEclipseCaseData.h"
#include "RigMainGrid.h"
2012-06-26 09:10:41 -05:00
//==================================================================================================
//
// Class RifReaderEclipseInput
//
//==================================================================================================
//--------------------------------------------------------------------------------------------------
/// Constructor
//--------------------------------------------------------------------------------------------------
RifReaderEclipseInput::RifReaderEclipseInput()
{
}
2012-06-26 09:10:41 -05:00
//--------------------------------------------------------------------------------------------------
/// Destructor
//--------------------------------------------------------------------------------------------------
RifReaderEclipseInput::~RifReaderEclipseInput()
{
}
2012-06-26 09:10:41 -05:00
//--------------------------------------------------------------------------------------------------
/// Open file and read geometry into given reservoir object
//--------------------------------------------------------------------------------------------------
bool RifReaderEclipseInput::open( const QString& fileName, RigEclipseCaseData* eclipseCase )
2012-06-26 09:10:41 -05:00
{
CVF_ASSERT( eclipseCase );
2012-06-26 09:10:41 -05:00
// Should we handle gridless properties ?
2012-08-31 12:12:47 -05:00
// If so, they must match dimensions, and a grid afterwards must match dimension
2012-06-26 09:10:41 -05:00
// Add file:
// Open file
// If we do not have any grid data,
2012-06-26 09:10:41 -05:00
// Search for grid keywords
// If grid data found
// Read grid keywords,
// produce ecl_grid,
// Transfer data to RigReservoir
// if not
// find include
// else
// Search through file for property keywords
// If found,
// read them,
2012-06-26 09:10:41 -05:00
// create InputProperty object
bool isOk = false;
2024-01-21 14:13:24 -06:00
if ( eclipseCase->mainGrid()->cellCount() == 0 )
2012-06-26 09:10:41 -05:00
{
QString errorMesssages;
isOk = RifEclipseInputFileTools::openGridFile( fileName, eclipseCase, isFaultImportEnabled(), &errorMesssages );
if ( !isOk )
{
RiaLogging::error( errorMesssages );
}
2012-06-26 09:10:41 -05:00
}
2012-06-26 09:10:41 -05:00
return isOk;
}