2017-05-29 09:40:49 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// Copyright (C) 2017 Statoil 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
|
|
|
|
|
2017-06-20 03:40:39 -05:00
|
|
|
#include "RiaEclipseUnitTools.h"
|
|
|
|
|
2017-05-29 09:40:49 -05:00
|
|
|
#include "cvfBase.h"
|
|
|
|
#include "cvfVector3.h"
|
|
|
|
#include "cvfColor3.h"
|
|
|
|
|
|
|
|
#include "cafPdmObject.h"
|
|
|
|
#include "cafPdmField.h"
|
|
|
|
|
|
|
|
#include <algorithm>
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
//==================================================================================================
|
|
|
|
///
|
|
|
|
///
|
|
|
|
//==================================================================================================
|
|
|
|
class RimFishbonesPipeProperties : public caf::PdmObject
|
|
|
|
{
|
|
|
|
CAF_PDM_HEADER_INIT;
|
|
|
|
|
|
|
|
public:
|
|
|
|
RimFishbonesPipeProperties();
|
|
|
|
virtual ~RimFishbonesPipeProperties();
|
|
|
|
|
|
|
|
double skinFactor() const { return m_skinFactor(); }
|
2017-06-20 03:40:39 -05:00
|
|
|
double holeDiameter(RiaEclipseUnitTools::UnitSystem unitSystem) const;
|
2017-05-29 09:40:49 -05:00
|
|
|
|
2017-06-20 05:36:12 -05:00
|
|
|
void setUnitSystemSpecificDefaults();
|
|
|
|
|
2017-05-29 09:40:49 -05:00
|
|
|
protected:
|
|
|
|
virtual void defineUiOrdering(QString uiConfigName, caf::PdmUiOrdering& uiOrdering) override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
caf::PdmField<double> m_skinFactor;
|
2017-05-30 02:49:58 -05:00
|
|
|
caf::PdmField<double> m_lateralHoleDiameter;
|
2017-05-29 09:40:49 -05:00
|
|
|
};
|