mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-16 18:34:54 -06:00
83 lines
3.2 KiB
C++
83 lines
3.2 KiB
C++
/////////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2020 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 <QString>
|
|
|
|
#include <vector>
|
|
|
|
//--------------------------------------------------------------------------------------------------
|
|
///
|
|
//--------------------------------------------------------------------------------------------------
|
|
class RigElasticProperties
|
|
{
|
|
public:
|
|
RigElasticProperties( const QString& fieldName, const QString& formationName, const QString& faciesName );
|
|
const QString& fieldName() const;
|
|
const QString& formationName() const;
|
|
const QString& faciesName() const;
|
|
|
|
void appendValues( double porosity,
|
|
double youngsModulus,
|
|
double poissonsRatio,
|
|
double m_K_Ic,
|
|
double proppantEmbedment,
|
|
double biotCoefficient,
|
|
double k0,
|
|
double fluidLossCoefficient,
|
|
double spurtLoss,
|
|
double immobileFluidSaturation );
|
|
double getYoungsModulus( double porosity ) const;
|
|
double getPoissonsRatio( double porosity ) const;
|
|
double getK_Ic( double porosity ) const;
|
|
double getProppantEmbedment( double porosity ) const;
|
|
double getBiotCoefficient( double porosity ) const;
|
|
double getK0( double porosity ) const;
|
|
double getFluidLossCoefficient( double porosity ) const;
|
|
double getSpurtLoss( double porosity ) const;
|
|
double getImmobileFluidSaturation( double porosity ) const;
|
|
|
|
const std::vector<double>& porosity() const;
|
|
const std::vector<double>& youngsModulus() const;
|
|
const std::vector<double>& poissonsRatio() const;
|
|
const std::vector<double>& K_Ic() const;
|
|
const std::vector<double>& proppantEmbedment() const;
|
|
const std::vector<double>& biotCoefficient() const;
|
|
const std::vector<double>& k0() const;
|
|
const std::vector<double>& fluidLossCoefficient() const;
|
|
const std::vector<double>& spurtLoss() const;
|
|
const std::vector<double>& immobileFluidSaturation() const;
|
|
|
|
private:
|
|
QString m_fieldName;
|
|
QString m_formationName;
|
|
QString m_faciesName;
|
|
|
|
std::vector<double> m_porosity;
|
|
std::vector<double> m_youngsModulus;
|
|
std::vector<double> m_poissonsRatio;
|
|
std::vector<double> m_K_Ic;
|
|
std::vector<double> m_proppantEmbedment;
|
|
std::vector<double> m_biotCoefficient;
|
|
std::vector<double> m_k0;
|
|
std::vector<double> m_fluidLossCoefficient;
|
|
std::vector<double> m_spurtLoss;
|
|
std::vector<double> m_immobileFluidSaturation;
|
|
};
|