Skip to content

Commit

Permalink
Automatically generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
benoitdaireaux committed Sep 11, 2023
1 parent 505d6f0 commit 46a92db
Show file tree
Hide file tree
Showing 8 changed files with 31 additions and 2 deletions.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -2051,6 +2051,14 @@
- Description:
- Examples:
- Definition set: PhysicalLocation
## TopOfStringReferenceLocation <!-- NOUN -->
- Display name: TopOfStringReferenceLocation
- Parent class: [Location](#Location)
- Attributes:
- Specialization:
- Description:
- Examples:
- Definition set: PhysicalLocation
## CasingShoeLocation <!-- NOUN -->
- Display name: CasingShoeLocation
- Parent class: [Location](#Location)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@
- Description:
- Examples:
- Definition set: PhysicalLocation
## TopOfStringReferenceLocation <!-- NOUN -->
- Display name: TopOfStringReferenceLocation
- Parent class: [Location](./PhysicalLocation.md#Location)
- Attributes:
- Specialization:
- Description:
- Examples:
- Definition set: PhysicalLocation
## CasingShoeLocation <!-- NOUN -->
- Display name: CasingShoeLocation
- Parent class: [Location](./PhysicalLocation.md#Location)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -533,6 +533,8 @@
<http://ddhub.no/Location> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://ddhub.no/DWISNoun> .
<http://ddhub.no/BitReferenceLocation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://ddhub.no/BitReferenceLocation> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://ddhub.no/Location> .
<http://ddhub.no/TopOfStringReferenceLocation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://ddhub.no/TopOfStringReferenceLocation> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://ddhub.no/Location> .
<http://ddhub.no/CasingShoeLocation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
<http://ddhub.no/CasingShoeLocation> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://ddhub.no/Location> .
<http://ddhub.no/DrillFloorReferenceLocation> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> .
Expand Down Expand Up @@ -956,6 +958,7 @@
<http://ddhub.no/MassTransferBasedDiscretization> <http://www.w3.org/2000/01/rdf-schema#comment> "A model can properly estimate values at the level of mass transfer propagation."@EN .
<http://ddhub.no/Location> <http://www.w3.org/2000/01/rdf-schema#comment> "Physical location for a signal. Refers to: 1) a reference frame (via the HasReferenceFrame relation), that works as a system of coordinates 2) an origin (of type Location) via the HasReferenceFrameOrigin relation."@EN .
<http://ddhub.no/BitReferenceLocation> <http://www.w3.org/2000/01/rdf-schema#comment> ""@EN .
<http://ddhub.no/TopOfStringReferenceLocation> <http://www.w3.org/2000/01/rdf-schema#comment> ""@EN .
<http://ddhub.no/CasingShoeLocation> <http://www.w3.org/2000/01/rdf-schema#comment> ""@EN .
<http://ddhub.no/DrillFloorReferenceLocation> <http://www.w3.org/2000/01/rdf-schema#comment> ""@EN .
<http://ddhub.no/HoleBottomLocation> <http://www.w3.org/2000/01/rdf-schema#comment> ""@EN .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1662,6 +1662,9 @@ ddhub:TopOfStringForceQuantity a owl:Class;
ddhub:TopOfStringPosition a owl:Class;
rdfs:comment ""@EN;
rdfs:subClassOf ddhub:DrillingDataPoint.
ddhub:TopOfStringReferenceLocation a owl:Class;
rdfs:comment ""@EN;
rdfs:subClassOf ddhub:Location.
ddhub:TopsideHydraulicNetwork a owl:Class;
rdfs:comment ""@EN;
rdfs:subClassOf ddhub:HydraulicNetwork.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1453,6 +1453,12 @@
<rdfs:comment xml:lang="EN">
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://ddhub.no/TopOfStringReferenceLocation">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class" />
<rdfs:subClassOf rdf:resource="http://ddhub.no/Location" />
<rdfs:comment xml:lang="EN">
</rdfs:comment>
</rdf:Description>
<rdf:Description rdf:about="http://ddhub.no/CasingShoeLocation">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class" />
<rdfs:subClassOf rdf:resource="http://ddhub.no/Location" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ public static class Nouns
public static string MassTransferBasedDiscretization = "MassTransferBasedDiscretization";
public static string Location = "Location";
public static string BitReferenceLocation = "BitReferenceLocation";
public static string TopOfStringReferenceLocation = "TopOfStringReferenceLocation";
public static string CasingShoeLocation = "CasingShoeLocation";
public static string DrillFloorReferenceLocation = "DrillFloorReferenceLocation";
public static string HoleBottomLocation = "HoleBottomLocation";
Expand Down

Large diffs are not rendered by default.

0 comments on commit 46a92db

Please sign in to comment.