2012-05-18 02:45:23 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2014-09-23 08:04:57 -05:00
|
|
|
// Copyright (C) 2011- Statoil ASA
|
|
|
|
// Copyright (C) 2013- Ceetron Solutions AS
|
|
|
|
// Copyright (C) 2011-2012 Ceetron AS
|
2012-05-18 02:45:23 -05:00
|
|
|
//
|
|
|
|
// 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 09:10:41 -05:00
|
|
|
#include <QString>
|
2012-05-18 02:45:23 -05:00
|
|
|
|
|
|
|
class RimDefines
|
|
|
|
{
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum ResultCatType
|
|
|
|
{
|
|
|
|
DYNAMIC_NATIVE,
|
|
|
|
STATIC_NATIVE,
|
2012-06-26 09:10:41 -05:00
|
|
|
GENERATED,
|
|
|
|
INPUT_PROPERTY,
|
|
|
|
REMOVED
|
2012-05-18 02:45:23 -05:00
|
|
|
};
|
|
|
|
|
2013-02-01 07:39:32 -06:00
|
|
|
enum PorosityModelType
|
|
|
|
{
|
|
|
|
MATRIX_MODEL,
|
|
|
|
FRACTURE_MODEL
|
|
|
|
};
|
|
|
|
|
2014-08-19 06:56:17 -05:00
|
|
|
static bool isPerCellFaceResult(const QString& resultName);
|
|
|
|
|
2014-08-19 06:20:12 -05:00
|
|
|
static QString undefinedResultName() { return "None"; }
|
|
|
|
static QString undefinedGridFaultName() { return "Undefined grid faults"; }
|
2014-09-09 00:12:43 -05:00
|
|
|
static QString combinedTransmissibilityResultName() { return "TRANXYZ"; }
|
2014-04-04 03:59:21 -05:00
|
|
|
static QString ternarySaturationResultName() { return "TERNARY"; }
|
2014-08-19 07:57:36 -05:00
|
|
|
static QString combinedMultResultName() { return "MULTXYZ"; }
|
2014-08-27 04:41:08 -05:00
|
|
|
|
2014-09-09 00:12:43 -05:00
|
|
|
static QString riTranXResultName() { return "riTRANX"; }
|
|
|
|
static QString riTranYResultName() { return "riTRANY"; }
|
|
|
|
static QString riTranZResultName() { return "riTRANZ"; }
|
|
|
|
static QString combinedRiTranResultName() { return "riTRANXYZ"; }
|
2014-08-27 04:41:08 -05:00
|
|
|
|
2014-08-26 08:32:19 -05:00
|
|
|
static QString riMultXResultName() { return "riMULTX"; }
|
|
|
|
static QString riMultYResultName() { return "riMULTY"; }
|
|
|
|
static QString riMultZResultName() { return "riMULTZ"; }
|
|
|
|
static QString combinedRiMultResultName() { return "riMULTXYZ"; }
|
2013-10-28 01:30:00 -05:00
|
|
|
|
2014-09-09 00:12:43 -05:00
|
|
|
static QString riAreaNormTranXResultName() { return "riTRANXbyArea"; }
|
|
|
|
static QString riAreaNormTranYResultName() { return "riTRANYbyArea"; }
|
|
|
|
static QString riAreaNormTranZResultName() { return "riTRANZbyArea"; }
|
|
|
|
static QString combinedRiAreaNormTranResultName() { return "riTRANXYZbyArea"; }
|
2014-08-27 04:41:08 -05:00
|
|
|
|
2013-10-28 01:30:00 -05: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 04:32:24 -05:00
|
|
|
static QString mockModelCustomized() { return "Result Mock Debug Model Customized"; }
|
2013-10-28 01:30:00 -05:00
|
|
|
static QString mockModelBasicInputCase() { return "Input Mock Debug Model Simple"; }
|
|
|
|
|
2012-05-18 02:45:23 -05:00
|
|
|
};
|
2012-06-26 09:10:41 -05:00
|
|
|
|