2012-05-18 09:45:23 +02:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Copyright (C) 2011-2012 Statoil ASA, Ceetron AS
|
|
|
|
|
//
|
|
|
|
|
// 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
|
|
|
|
|
|
2012-06-26 16:10:41 +02:00
|
|
|
#include <QString>
|
2012-05-18 09:45:23 +02:00
|
|
|
|
|
|
|
|
class RimDefines
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
enum ResultCatType
|
|
|
|
|
{
|
|
|
|
|
DYNAMIC_NATIVE,
|
|
|
|
|
STATIC_NATIVE,
|
2012-06-26 16:10:41 +02:00
|
|
|
GENERATED,
|
|
|
|
|
INPUT_PROPERTY,
|
|
|
|
|
REMOVED
|
2012-05-18 09:45:23 +02:00
|
|
|
};
|
|
|
|
|
|
2013-02-01 14:39:32 +01:00
|
|
|
enum PorosityModelType
|
|
|
|
|
{
|
|
|
|
|
MATRIX_MODEL,
|
|
|
|
|
FRACTURE_MODEL
|
|
|
|
|
};
|
|
|
|
|
|
2012-08-31 19:12:47 +02:00
|
|
|
static QString undefinedResultName() { return "None"; }
|
2014-01-22 14:05:20 +01:00
|
|
|
static QString undefinedGridFaultName() { return "Undefined grid faults"; }
|
|
|
|
|
static QString combinedTransmissibilityResultName() { return "TRANSXYZ"; }
|
2013-10-28 07:30:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
// Mock model text identifiers
|
|
|
|
|
static QString mockModelBasic() { return "Result Mock Debug Model Simple"; }
|
|
|
|
|
static QString mockModelBasicWithResults() { return "Result Mock Debug Model With Results"; }
|
|
|
|
|
static QString mockModelLargeWithResults() { return "Result Mock Debug Model Large With Results"; }
|
2013-10-28 10:32:24 +01:00
|
|
|
static QString mockModelCustomized() { return "Result Mock Debug Model Customized"; }
|
2013-10-28 07:30:00 +01:00
|
|
|
static QString mockModelBasicInputCase() { return "Input Mock Debug Model Simple"; }
|
|
|
|
|
|
2012-05-18 09:45:23 +02:00
|
|
|
};
|
2012-06-26 16:10:41 +02:00
|
|
|
|