2017-06-14 07:53:28 +02:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// Copyright (C) 2015- Statoil ASA
|
|
|
|
|
// Copyright (C) 2015- Ceetron Solutions AS
|
2019-09-06 10:40:57 +02:00
|
|
|
//
|
2017-06-14 07:53:28 +02: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.
|
2019-09-06 10:40:57 +02:00
|
|
|
//
|
2017-06-14 07:53:28 +02:00
|
|
|
// 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.
|
2019-09-06 10:40:57 +02:00
|
|
|
//
|
|
|
|
|
// See the GNU General Public License at <http://www.gnu.org/licenses/gpl.html>
|
2017-06-14 07:53:28 +02:00
|
|
|
// for more details.
|
|
|
|
|
//
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2015-05-06 16:07:30 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2019-09-06 10:40:57 +02:00
|
|
|
enum RigFemResultPosEnum
|
|
|
|
|
{
|
2015-05-06 16:07:30 +02:00
|
|
|
RIG_NODAL,
|
|
|
|
|
RIG_ELEMENT_NODAL,
|
2016-09-06 10:27:30 +02:00
|
|
|
RIG_INTEGRATION_POINT,
|
2016-10-19 12:22:13 +02:00
|
|
|
RIG_ELEMENT_NODAL_FACE,
|
2018-01-08 16:07:23 +01:00
|
|
|
RIG_FORMATION_NAMES,
|
2018-06-05 11:56:47 +02:00
|
|
|
RIG_ELEMENT,
|
2020-02-11 08:41:26 +01:00
|
|
|
RIG_WELLPATH_DERIVED,
|
|
|
|
|
RIG_DIFFERENTIALS
|
2015-05-06 16:07:30 +02:00
|
|
|
};
|