2020-07-02 06:53:39 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2018- 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>
|
|
|
|
|
|
|
|
namespace RiaDefines
|
|
|
|
{
|
|
|
|
enum class CurveProperty
|
|
|
|
{
|
2020-07-10 02:18:45 -05:00
|
|
|
UNDEFINED,
|
2020-07-02 06:53:39 -05:00
|
|
|
FACIES,
|
|
|
|
LAYERS,
|
|
|
|
POROSITY,
|
|
|
|
PERMEABILITY_X,
|
|
|
|
PERMEABILITY_Z,
|
|
|
|
INITIAL_PRESSURE,
|
|
|
|
PRESSURE,
|
|
|
|
STRESS,
|
2020-09-17 06:40:26 -05:00
|
|
|
INITIAL_STRESS,
|
2020-07-02 06:53:39 -05:00
|
|
|
STRESS_GRADIENT,
|
|
|
|
YOUNGS_MODULUS,
|
|
|
|
POISSONS_RATIO,
|
|
|
|
K_IC,
|
|
|
|
PROPPANT_EMBEDMENT,
|
|
|
|
BIOT_COEFFICIENT,
|
|
|
|
K0,
|
|
|
|
FLUID_LOSS_COEFFICIENT,
|
2020-08-25 07:11:16 -05:00
|
|
|
SPURT_LOSS,
|
|
|
|
TEMPERATURE,
|
2020-08-25 09:04:34 -05:00
|
|
|
RELATIVE_PERMEABILITY_FACTOR,
|
|
|
|
PORO_ELASTIC_CONSTANT,
|
2020-08-26 03:18:29 -05:00
|
|
|
THERMAL_EXPANSION_COEFFICIENT,
|
2020-08-26 00:01:16 -05:00
|
|
|
IMMOBILE_FLUID_SATURATION,
|
2020-10-19 08:11:01 -05:00
|
|
|
NET_TO_GROSS,
|
2020-11-06 06:45:45 -06:00
|
|
|
POROSITY_UNSCALED,
|
2021-02-22 05:16:36 -06:00
|
|
|
EQLNUM,
|
2021-03-08 07:57:52 -06:00
|
|
|
PRESSURE_GRADIENT,
|
2021-10-01 10:26:30 -05:00
|
|
|
FORMATIONS
|
2020-07-02 06:53:39 -05:00
|
|
|
};
|
2021-01-15 04:24:08 -06:00
|
|
|
|
|
|
|
double defaultPorosity();
|
|
|
|
double defaultPermeability();
|
2021-01-18 06:40:44 -06:00
|
|
|
double zeroReplacementForLogarithmicPlot();
|
2021-01-15 04:24:08 -06:00
|
|
|
|
2020-07-02 06:53:39 -05:00
|
|
|
}; // namespace RiaDefines
|