mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
76 lines
2.9 KiB
C++
76 lines
2.9 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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 );
|
|
}
|