mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
Add fault reactivation file export.
This commit is contained in:
parent
bddabacc3e
commit
d7bff0472e
@ -87,6 +87,7 @@ set(SOURCE_GROUP_HEADER_FILES
|
|||||||
${CMAKE_CURRENT_LIST_DIR}/RifStimPlanCsvSummaryReader.h
|
${CMAKE_CURRENT_LIST_DIR}/RifStimPlanCsvSummaryReader.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RifReaderOpmCommon.h
|
${CMAKE_CURRENT_LIST_DIR}/RifReaderOpmCommon.h
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RifInpExportTools.h
|
${CMAKE_CURRENT_LIST_DIR}/RifInpExportTools.h
|
||||||
|
${CMAKE_CURRENT_LIST_DIR}/RifFaultReactivationModelExporter.h
|
||||||
)
|
)
|
||||||
|
|
||||||
set(SOURCE_GROUP_SOURCE_FILES
|
set(SOURCE_GROUP_SOURCE_FILES
|
||||||
@ -175,6 +176,7 @@ set(SOURCE_GROUP_SOURCE_FILES
|
|||||||
${CMAKE_CURRENT_LIST_DIR}/RifStimPlanCsvSummaryReader.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RifStimPlanCsvSummaryReader.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RifReaderOpmCommon.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RifReaderOpmCommon.cpp
|
||||||
${CMAKE_CURRENT_LIST_DIR}/RifInpExportTools.cpp
|
${CMAKE_CURRENT_LIST_DIR}/RifInpExportTools.cpp
|
||||||
|
${CMAKE_CURRENT_LIST_DIR}/RifFaultReactivationModelExporter.cpp
|
||||||
)
|
)
|
||||||
|
|
||||||
list(APPEND CODE_HEADER_FILES ${SOURCE_GROUP_HEADER_FILES})
|
list(APPEND CODE_HEADER_FILES ${SOURCE_GROUP_HEADER_FILES})
|
||||||
|
@ -0,0 +1,75 @@
|
|||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// Copyright (C) 2023- 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 "RifFaultReactivationModelExporter.h"
|
||||||
|
#include "RigFaultReactivationModel.h"
|
||||||
|
#include "RigGriddedPart3d.h"
|
||||||
|
|
||||||
|
#include "RiaApplication.h"
|
||||||
|
#include "RiaVersionInfo.h"
|
||||||
|
|
||||||
|
#include "RifInpExportTools.h"
|
||||||
|
|
||||||
|
#include <fstream>
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
std::pair<bool, std::string> RifFaultReactivationModelExporter::exportToStream( std::ostream& stream, const RigFaultReactivationModel& model )
|
||||||
|
{
|
||||||
|
RifInpExportTools::printHeading( stream, "Heading" );
|
||||||
|
RifInpExportTools::printComment( stream, std::string( "Generated by: " ).append( STRPRODUCTVER ) );
|
||||||
|
|
||||||
|
RifInpExportTools::printHeading( stream, "Preprint, echo=NO, model=NO, history=NO, contact=NO" );
|
||||||
|
|
||||||
|
RifInpExportTools::printComment( stream, "PARTS" );
|
||||||
|
|
||||||
|
auto parts = model.allGridParts();
|
||||||
|
|
||||||
|
int partIndex = 1;
|
||||||
|
for ( auto part : parts )
|
||||||
|
{
|
||||||
|
std::string partName = "Part-" + std::to_string( partIndex );
|
||||||
|
RifInpExportTools::printHeading( stream, "Part, name=" + partName );
|
||||||
|
|
||||||
|
auto grid = model.grid( part );
|
||||||
|
|
||||||
|
const std::vector<cvf::Vec3d>& nodes = grid->vertices();
|
||||||
|
RifInpExportTools::printNodes( stream, nodes );
|
||||||
|
|
||||||
|
const std::vector<std::vector<unsigned int>>& elements = grid->elementIndices();
|
||||||
|
RifInpExportTools::printElements( stream, elements );
|
||||||
|
|
||||||
|
RifInpExportTools::printHeading( stream, "," );
|
||||||
|
RifInpExportTools::printHeading( stream, "End Part" );
|
||||||
|
|
||||||
|
partIndex++;
|
||||||
|
}
|
||||||
|
|
||||||
|
return { false, "" };
|
||||||
|
}
|
||||||
|
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
///
|
||||||
|
//--------------------------------------------------------------------------------------------------
|
||||||
|
std::pair<bool, std::string> RifFaultReactivationModelExporter::exportToFile( const std::string& filePath,
|
||||||
|
const RigFaultReactivationModel& model )
|
||||||
|
{
|
||||||
|
std::ofstream stream( filePath );
|
||||||
|
return exportToStream( stream, model );
|
||||||
|
}
|
@ -0,0 +1,37 @@
|
|||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
//
|
||||||
|
// Copyright (C) 2023- 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.
|
||||||
|
//
|
||||||
|
/////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "cvfVector3.h"
|
||||||
|
|
||||||
|
#include <ostream>
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
|
class RigFaultReactivationModel;
|
||||||
|
|
||||||
|
//==================================================================================================
|
||||||
|
///
|
||||||
|
//==================================================================================================
|
||||||
|
class RifFaultReactivationModelExporter
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
static std::pair<bool, std::string> exportToStream( std::ostream& stream, const RigFaultReactivationModel& model );
|
||||||
|
static std::pair<bool, std::string> exportToFile( const std::string& filePath, const RigFaultReactivationModel& model );
|
||||||
|
};
|
Loading…
Reference in New Issue
Block a user