Fesapi  0.13.0.0
This project provides C++ classes which allow an easy access in import and export to the Energistics standards.
IjkGridExplicitRepresentation.h
1 /*-----------------------------------------------------------------------
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"; you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9 
10  http://www.apache.org/licenses/LICENSE-2.0
11 
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18 -----------------------------------------------------------------------*/
19 #pragma once
20 
21 #include "resqml2_0_1/AbstractIjkGridRepresentation.h"
22 
23 namespace RESQML2_0_1_NS
24 {
26  {
27  public:
28 
33  const std::string & guid, const std::string & title,
34  const unsigned int & iCount, const unsigned int & jCount, const unsigned int & kCount,
35  bool withTruncatedPillars = false);
36 
38  const std::string & guid, const std::string & title,
39  const unsigned int & iCount, const unsigned int & jCount, const unsigned int & kCount,
40  bool withTruncatedPillars = false);
41 
45  IjkGridExplicitRepresentation(gsoap_resqml2_0_1::_resqml2__IjkGridRepresentation* fromGsoap) : AbstractIjkGridRepresentation(fromGsoap) {}
46  IjkGridExplicitRepresentation(gsoap_resqml2_0_1::_resqml2__TruncatedIjkGridRepresentation* fromGsoap) : AbstractIjkGridRepresentation(fromGsoap) {}
47 
52 
53  std::string getHdfProxyUuid() const;
54 
58  ULONG64 getXyzPointCountOfPatch(const unsigned int & patchIndex) const;
59 
68  void getXyzPointsOfKInterfaceSequenceOfPatch(const unsigned int & kInterfaceStart, const unsigned int & kInterfaceEnd, const unsigned int & patchIndex, double * xyzPoints);
69 
75  void getXyzPointsOfBlockOfPatch(const unsigned int & patchIndex, double * xyzPoints);
76 
82  void getXyzPointsOfPatch(const unsigned int & patchIndex, double * xyzPoints) const;
83 
100  void setGeometryAsCoordinateLineNodes(
101  const gsoap_resqml2_0_1::resqml2__PillarShape & mostComplexPillarGeometry, const gsoap_resqml2_0_1::resqml2__KDirection & kDirectionKind, const bool & isRightHanded,
102  double * points, COMMON_NS::AbstractHdfProxy* proxy,
103  const unsigned long & splitCoordinateLineCount = 0, unsigned int * pillarOfCoordinateLine = nullptr,
104  unsigned int * splitCoordinateLineColumnCumulativeCount = nullptr, unsigned int * splitCoordinateLineColumns = nullptr,
105  char * definedPillars = nullptr);
106 
110  void setGeometryAsCoordinateLineNodesUsingExistingDatasets(
111  const gsoap_resqml2_0_1::resqml2__PillarShape & mostComplexPillarGeometry, const gsoap_resqml2_0_1::resqml2__KDirection & kDirectionKind, const bool & isRightHanded,
112  const std::string & points, COMMON_NS::AbstractHdfProxy* proxy,
113  const unsigned long & splitCoordinateLineCount = 0, const std::string & pillarOfCoordinateLine = "",
114  const std::string & splitCoordinateLineColumnCumulativeCount = "", const std::string & splitCoordinateLineColumns = "",
115  const std::string & definedPillars = "");
116 
117  geometryKind getGeometryKind() const;
118  };
119 }
120 
Definition: AbstractIjkGridRepresentation.h:32
Definition: AbstractFeatureInterpretation.h:30
Definition: EpcDocument.h:65
Definition: AbstractHdfProxy.h:30
Definition: IjkGridExplicitRepresentation.h:25
virtual ~IjkGridExplicitRepresentation()
Definition: IjkGridExplicitRepresentation.h:51
Definition: AbstractLocal3dCrs.h:25
IjkGridExplicitRepresentation(gsoap_resqml2_0_1::_resqml2__IjkGridRepresentation *fromGsoap)
Definition: IjkGridExplicitRepresentation.h:45