forked from GAIA-X4PLC-AAD/ontology-management-base
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsimulation-model.owl.ttl
More file actions
337 lines (273 loc) · 13 KB
/
Copy pathsimulation-model.owl.ttl
File metadata and controls
337 lines (273 loc) · 13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
@prefix simulation-model: <https://w3id.org/gaia-x4plcaad/ontologies/simulation-model/v3/> .
@prefix envited-x: <https://w3id.org/ascs-ev/envited-x/envited-x/v3/> .
@prefix manifest: <https://w3id.org/ascs-ev/envited-x/manifest/v5/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix org: <http://www.w3.org/ns/org#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://w3id.org/gaia-x4plcaad/ontologies/simulation-model/v3> a owl:Ontology ;
rdfs:label "Ontology definition for simulation-model"@en ;
rdfs:comment "An ontology with common classes to describe the structure of a Modelica FMI based simulation model."@en ;
dcterms:creator "The GAIA-X 4 PLC AAD Project Team"@en ;
dcterms:contributor [
a foaf:Person ;
foaf:name "Fin Heuer" ;
org:memberOf <https://www.dlr.de/> ;
] ;
# Permanent identifier for the ontology (not version-specific)
dcterms:identifier <https://w3id.org/ascs-ev/envited-x/simulation-model> ;
# GitHub repository where the ontology is maintained
dcterms:source <https://github.com/ASCS-eV/ontology-management-base> ;
# Specific GitHub release used for publishing this version
prov:wasDerivedFrom <https://github.com/ASCS-eV/ontology-management-base/releases/tag/v0.1.3> ;
# Versioning
owl:versionIRI <https://w3id.org/gaia-x4plcaad/ontologies/simulation-model/v3> ;
owl:versionInfo "v3" ;
owl:priorVersion <https://w3id.org/gaia-x4plcaad/ontologies/simulation-model/v2> ;
# Imports strict dependencies
owl:imports <https://w3id.org/ascs-ev/envited-x/envited-x/v3> ;
# Reference to SHACL validation rules
dcterms:conformsTo <https://w3id.org/gaia-x4plcaad/ontologies/simulation-model/v3/shapes> ;
# Additional references to the ENVITED Ecosystem Specification (EVES) or related ontologies
dcterms:references <https://fmi-standard.org/> ;
rdfs:seeAlso <https://ascs-ev.github.io/EVES/> .
#### Classes
simulation-model:SimulationModel a owl:Class ;
rdfs:label "Class definition for SimulationModel"@en ;
rdfs:comment "Class definition for a simulation model."@en ;
rdfs:subClassOf envited-x:SoftwareAsset .
simulation-model:DomainSpecification a owl:Class ;
rdfs:label "Class definition for DomainSpecification"@en ;
rdfs:comment "Domain-specific metadata extension for simulation model assets."@en ;
rdfs:subClassOf envited-x:DomainSpecification .
simulation-model:Content a owl:Class ;
rdfs:label "Class definition for Content"@en ;
rdfs:comment "Class with attributes for the content of a simulation model."@en ;
rdfs:subClassOf envited-x:Content .
simulation-model:Format a owl:Class ;
rdfs:label "Class definition for Format"@en ;
rdfs:comment "Class with attributes for the format of a simulation model."@en ;
rdfs:subClassOf envited-x:Format .
simulation-model:Quality a owl:Class ;
rdfs:label "Class definition for Quality"@en ;
rdfs:comment "Class with attributes for the quality of a simulation model."@en ;
rdfs:subClassOf envited-x:Quality .
simulation-model:Quantity a owl:Class ;
rdfs:label "Class definition for Quantity"@en ;
rdfs:comment "Class with attributes for the quantity of a simulation model."@en ;
rdfs:subClassOf envited-x:Quantity .
simulation-model:DataSource a owl:Class ;
rdfs:label "Class definition for DataSource"@en ;
rdfs:comment "Class with attributes for the data source of a simulation model."@en ;
rdfs:subClassOf envited-x:DataSource .
#### Object Properties
### hasSoftwareResource (SimulationModel -> envited-x:SoftwareResourceBase)
simulation-model:hasSoftwareResource a owl:ObjectProperty ;
rdfs:label "Object property: hasSoftwareResource"@en ;
rdfs:comment "Links a simulation model to its GX-compliant SoftwareResourceBase."@en ;
rdfs:subPropertyOf envited-x:hasSoftwareResource ;
rdfs:domain simulation-model:SimulationModel ;
rdfs:range [
a owl:Class ;
owl:unionOf ( envited-x:SoftwareResourceBase manifest:Link )
] .
### hasDomainSpecification (SimulationModel -> DomainSpecification)
simulation-model:hasDomainSpecification a owl:ObjectProperty ;
rdfs:label "Object property: hasDomainSpecification"@en ;
rdfs:comment "Links a simulation model to its domain-specific metadata."@en ;
rdfs:subPropertyOf envited-x:hasDomainSpecification ;
rdfs:domain simulation-model:SimulationModel ;
rdfs:range simulation-model:DomainSpecification .
### hasManifest (SimulationModel -> envited-x:Manifest or manifest:Link)
simulation-model:hasManifest a owl:ObjectProperty ;
rdfs:label "Object property: hasManifest"@en ;
rdfs:comment """Links a simulation model to its manifest.
The value can be either:
- an inline envited-x:Manifest node, or
- a manifest:Link node."""@en ;
rdfs:subPropertyOf envited-x:hasManifest ;
rdfs:domain simulation-model:SimulationModel ;
rdfs:range [
a owl:Class ;
owl:unionOf ( envited-x:Manifest manifest:Link )
] .
### hasContent (DomainSpecification -> Content)
simulation-model:hasContent a owl:ObjectProperty ;
rdfs:label "Object property: hasContent"@en ;
rdfs:comment "Links a DomainSpecification to its Content facet."@en ;
rdfs:subPropertyOf envited-x:hasContent ;
rdfs:domain simulation-model:DomainSpecification ;
rdfs:range simulation-model:Content .
### hasFormat (DomainSpecification -> Format)
simulation-model:hasFormat a owl:ObjectProperty ;
rdfs:label "Object property: hasFormat"@en ;
rdfs:comment "Links a DomainSpecification to its Format facet."@en ;
rdfs:subPropertyOf envited-x:hasFormat ;
rdfs:domain simulation-model:DomainSpecification ;
rdfs:range simulation-model:Format .
### hasQuality (DomainSpecification -> Quality)
simulation-model:hasQuality a owl:ObjectProperty ;
rdfs:label "Object property: hasQuality"@en ;
rdfs:comment "Links a DomainSpecification to its Quality facet."@en ;
rdfs:subPropertyOf envited-x:hasQuality ;
rdfs:domain simulation-model:DomainSpecification ;
rdfs:range simulation-model:Quality .
### hasQuantity (DomainSpecification -> Quantity)
simulation-model:hasQuantity a owl:ObjectProperty ;
rdfs:label "Object property: hasQuantity"@en ;
rdfs:comment "Links a DomainSpecification to its Quantity facet."@en ;
rdfs:subPropertyOf envited-x:hasQuantity ;
rdfs:domain simulation-model:DomainSpecification ;
rdfs:range simulation-model:Quantity .
### hasDataSource (DomainSpecification -> DataSource)
simulation-model:hasDataSource a owl:ObjectProperty ;
rdfs:label "Object property: hasDataSource"@en ;
rdfs:comment "Links a DomainSpecification to its DataSource facet."@en ;
rdfs:subPropertyOf envited-x:hasDataSource ;
rdfs:domain simulation-model:DomainSpecification ;
rdfs:range simulation-model:DataSource .
#### Datatype Properties
# Format properties
simulation-model:modelImplementationFormat a owl:DatatypeProperty ;
rdfs:label "model implementation format"@en ;
rdfs:domain simulation-model:Format ;
rdfs:range xsd:string .
simulation-model:modelPreconditions a owl:DatatypeProperty ;
rdfs:label "model preconditions"@en ;
rdfs:domain simulation-model:Format ;
rdfs:range xsd:string .
simulation-model:modelImplementationPreconditions a owl:DatatypeProperty ;
rdfs:label "model implementation preconditions"@en ;
rdfs:domain simulation-model:Format ;
rdfs:range xsd:string .
simulation-model:modelIntegrationRequirements a owl:DatatypeProperty ;
rdfs:label "model integration requirements"@en ;
rdfs:domain simulation-model:Format ;
rdfs:range xsd:anyURI .
# Content properties
simulation-model:modelType a owl:DatatypeProperty ;
rdfs:label "model type"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:modelManufacturer a owl:DatatypeProperty ;
rdfs:label "model manufacturer"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:modelFamily a owl:DatatypeProperty ;
rdfs:label "model family"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:modelName a owl:DatatypeProperty ;
rdfs:label "model name"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:modelVersion a owl:DatatypeProperty ;
rdfs:label "model version"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:modelReleasedate a owl:DatatypeProperty ;
rdfs:label "model release date"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:dateTime .
simulation-model:modelReleasestatus a owl:DatatypeProperty ;
rdfs:label "model release status"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:modelGuid a owl:DatatypeProperty ;
rdfs:label "model GUID"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:modelPurpose a owl:DatatypeProperty ;
rdfs:label "model purpose"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:modelModellingApproach a owl:DatatypeProperty ;
rdfs:label "model modelling approach"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:sensorManufacturer a owl:DatatypeProperty ;
rdfs:label "sensor manufacturer"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:sensorFamily a owl:DatatypeProperty ;
rdfs:label "sensor family"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:sensorName a owl:DatatypeProperty ;
rdfs:label "sensor name"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:sensorVersion a owl:DatatypeProperty ;
rdfs:label "sensor version"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:sensorManufacturerPartnumber a owl:DatatypeProperty ;
rdfs:label "sensor manufacturer partnumber"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:sensorType a owl:DatatypeProperty ;
rdfs:label "sensor type"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:sensorTechnology a owl:DatatypeProperty ;
rdfs:label "sensor technology"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
simulation-model:sensorTechnologyVariant a owl:DatatypeProperty ;
rdfs:label "sensor technology variant"@en ;
rdfs:domain simulation-model:Content ;
rdfs:range xsd:string .
# Quantity properties
simulation-model:maxDetections a owl:DatatypeProperty ;
rdfs:label "maximum number of detections"@en ;
rdfs:domain simulation-model:Quantity ;
rdfs:range xsd:integer .
simulation-model:maxObjects a owl:DatatypeProperty ;
rdfs:label "maximum number of detected objects"@en ;
rdfs:domain simulation-model:Quantity ;
rdfs:range xsd:integer .
# Quality properties
simulation-model:modelLimitations a owl:DatatypeProperty ;
rdfs:label "model limitations"@en ;
rdfs:domain simulation-model:Quality ;
rdfs:range xsd:string .
simulation-model:modelValidityRange a owl:DatatypeProperty ;
rdfs:label "model validity range"@en ;
rdfs:domain simulation-model:Quality ;
rdfs:range xsd:string .
simulation-model:modelVerificationStatus a owl:DatatypeProperty ;
rdfs:label "model verification status"@en ;
rdfs:domain simulation-model:Quality ;
rdfs:range xsd:boolean .
simulation-model:modelVerificationReport a owl:DatatypeProperty ;
rdfs:label "model verification report"@en ;
rdfs:domain simulation-model:Quality ;
rdfs:range xsd:anyURI .
simulation-model:modelValidationStatus a owl:DatatypeProperty ;
rdfs:label "model validation status"@en ;
rdfs:domain simulation-model:Quality ;
rdfs:range xsd:boolean .
simulation-model:modelValidationPlatform a owl:DatatypeProperty ;
rdfs:label "model validation platform"@en ;
rdfs:domain simulation-model:Quality ;
rdfs:range xsd:string .
simulation-model:modelValidationReport a owl:DatatypeProperty ;
rdfs:label "model validation report"@en ;
rdfs:domain simulation-model:Quality ;
rdfs:range xsd:anyURI .
simulation-model:modelValidationConcept a owl:DatatypeProperty ;
rdfs:label "model validation concept"@en ;
rdfs:domain simulation-model:Quality ;
rdfs:range xsd:anyURI .
simulation-model:modelImplementationPerformanceCharacteristics a owl:DatatypeProperty ;
rdfs:label "model implementation performance characteristics"@en ;
rdfs:domain simulation-model:Quality ;
rdfs:range xsd:string .
# DataSource properties
simulation-model:modelSpecification a owl:DatatypeProperty ;
rdfs:label "model specification"@en ;
rdfs:domain simulation-model:DataSource ;
rdfs:range xsd:anyURI .