2023-10-18 09:10:08 +02:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// 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
|
|
|
|
|
|
|
|
namespace RimFaultReactivation
|
|
|
|
{
|
|
|
|
|
|
|
|
enum class GridPart
|
|
|
|
{
|
2023-11-28 02:26:09 +01:00
|
|
|
FW, // footwall
|
|
|
|
HW // hanging wall
|
2023-10-18 09:10:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class BorderSurface
|
|
|
|
{
|
|
|
|
UpperSurface,
|
|
|
|
FaultSurface,
|
2023-12-05 13:34:44 +01:00
|
|
|
LowerSurface,
|
|
|
|
Seabed
|
2023-10-18 09:10:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class Boundary
|
|
|
|
{
|
|
|
|
FarSide,
|
2024-01-27 00:31:27 +01:00
|
|
|
Bottom,
|
|
|
|
Fault
|
2023-10-18 09:10:08 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
enum class ElementSets
|
|
|
|
{
|
|
|
|
OverBurden,
|
|
|
|
UnderBurden,
|
|
|
|
Reservoir,
|
2024-01-19 08:39:10 +01:00
|
|
|
IntraReservoir,
|
|
|
|
FaultZone
|
2023-10-18 09:10:08 +02:00
|
|
|
};
|
|
|
|
|
2024-01-22 19:38:53 +01:00
|
|
|
enum class StressSource
|
|
|
|
{
|
|
|
|
StressFromEclipse,
|
|
|
|
StressFromGeoMech
|
|
|
|
};
|
|
|
|
|
2023-10-23 16:04:48 +02:00
|
|
|
enum class Property
|
|
|
|
{
|
|
|
|
PorePressure,
|
|
|
|
VoidRatio,
|
2023-11-01 09:00:55 +01:00
|
|
|
Temperature,
|
|
|
|
Density,
|
|
|
|
YoungsModulus,
|
2023-11-15 10:15:16 +01:00
|
|
|
PoissonsRatio,
|
|
|
|
StressTop,
|
|
|
|
StressBottom,
|
|
|
|
DepthTop,
|
|
|
|
DepthBottom,
|
|
|
|
LateralStressComponentX,
|
|
|
|
LateralStressComponentY
|
2023-10-23 16:04:48 +02:00
|
|
|
};
|
|
|
|
|
2023-10-18 09:10:08 +02:00
|
|
|
} // namespace RimFaultReactivation
|