mirror of
https://github.com/OPM/ResInsight.git
synced 2025-01-05 21:53:27 -06:00
806a149809
* Use constructor instead of nullptr for WindowFlags * Use constructor instead of nullptr for Alignment * Disable deprecation warning for QProcess * Add string split method to RaTextStringTools * Add caf.cpp used to manage Qt function deprecations * Use position()
162 lines
5.1 KiB
C++
162 lines
5.1 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2021 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 "RifWellIAFileWriter.h"
|
|
|
|
#include "RimGenericParameter.h"
|
|
#include "RimParameterGroup.h"
|
|
#include "RimParameterGroups.h"
|
|
#include "RimWellIAModelData.h"
|
|
#include "RimWellIASettings.h"
|
|
|
|
#include "caf.h"
|
|
|
|
#include <QFile>
|
|
#include <QTextStream>
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RifWellIAFileWriter::writeToJsonFile( RimWellIASettings& settings, QString& outErrorText )
|
|
{
|
|
QString filename = settings.jsonInputFilename();
|
|
|
|
outErrorText = "Unable to write to file \"" + filename + "\" - ";
|
|
|
|
QFile file( filename );
|
|
if ( file.open( QIODevice::ReadWrite | QIODevice::Truncate | QIODevice::Text ) )
|
|
{
|
|
QTextStream stream( &file );
|
|
|
|
stream << "{" << caf::endl;
|
|
stream << "\"comments\": \"All units are SI unless mentioned otherwise; temperature is in Celcius; use forward "
|
|
"slash (/) in 'directory' definition\","
|
|
<< caf::endl;
|
|
stream << "\"directory\": \"" + settings.outputBaseDirectory() + "\"," << caf::endl;
|
|
stream << "\"output_name\": \"" + settings.name() + "\"";
|
|
|
|
RimParameterGroups mergedGroups;
|
|
|
|
bool mergeInCommentParameter = true;
|
|
|
|
for ( auto& group : settings.inputParameterGroups() )
|
|
{
|
|
mergedGroups.mergeGroup( group, mergeInCommentParameter );
|
|
}
|
|
for ( auto& group : settings.resinsightParameterGroups() )
|
|
{
|
|
mergedGroups.mergeGroup( group, mergeInCommentParameter );
|
|
}
|
|
|
|
for ( auto& group : mergedGroups.groups() )
|
|
{
|
|
stream << "," << caf::endl;
|
|
|
|
stream << "\"" + group->name() + "\": {" << caf::endl;
|
|
|
|
const auto& parameters = group->parameters();
|
|
|
|
for ( size_t i = 0; i < parameters.size(); )
|
|
{
|
|
stream << " \"" + parameters[i]->name() + "\": " + parameters[i]->jsonValue();
|
|
|
|
i++;
|
|
if ( i < parameters.size() )
|
|
{
|
|
stream << ",";
|
|
}
|
|
stream << caf::endl;
|
|
}
|
|
|
|
stream << " }";
|
|
}
|
|
|
|
stream << caf::endl << "}" << caf::endl;
|
|
file.close();
|
|
}
|
|
else
|
|
{
|
|
outErrorText += "Could not open file.";
|
|
return false;
|
|
}
|
|
|
|
outErrorText = "";
|
|
return true;
|
|
}
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
bool RifWellIAFileWriter::writeToCSVFile( RimWellIASettings& settings, QString& outErrorText )
|
|
{
|
|
QString filename = settings.csvInputFilename();
|
|
|
|
outErrorText = "Unable to write to file \"" + filename + "\" - ";
|
|
|
|
QFile file( filename );
|
|
if ( file.open( QIODevice::ReadWrite | QIODevice::Truncate | QIODevice::Text ) )
|
|
{
|
|
QTextStream stream( &file );
|
|
|
|
stream << "Time_days, Pcasing_Pa, P_form_Pa, Temp_C,"
|
|
"U1-1,U2,U3,U1-2,U2,U3,U1-3,U2,U3,U1-4,U2,U3,U1-5,U2,U3,U1-6,U2,U3,U1-7,U2,U3,U1-8,U2,U3,"
|
|
"X,Y,Z,X2,Y,Z,X3,Y,Z,X4,Y,Z,X5,Y,Z,X6,Y,Z,X7,Y,Z,X8,Y,Z";
|
|
stream << caf::endl;
|
|
|
|
for ( auto& modeldata : settings.modelData() )
|
|
{
|
|
stream << modeldata->dayOffset();
|
|
stream << ",";
|
|
stream << modeldata->casingPressure();
|
|
stream << ",";
|
|
stream << modeldata->formationPressure();
|
|
stream << ",";
|
|
stream << modeldata->temperature();
|
|
|
|
for ( auto& u : modeldata->displacements() )
|
|
{
|
|
stream << ",";
|
|
stream << u.x();
|
|
stream << ",";
|
|
stream << u.y();
|
|
stream << ",";
|
|
stream << u.z();
|
|
}
|
|
|
|
for ( auto& pos : settings.modelBoxVertices() )
|
|
{
|
|
stream << ",";
|
|
stream << pos.x();
|
|
stream << ",";
|
|
stream << pos.y();
|
|
stream << ",";
|
|
stream << pos.z();
|
|
}
|
|
stream << caf::endl;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
outErrorText += "Could not open file.";
|
|
return false;
|
|
}
|
|
|
|
outErrorText = "";
|
|
return true;
|
|
}
|