-
Notifications
You must be signed in to change notification settings - Fork 0
/
css-effect.ttl
269 lines (221 loc) · 19.2 KB
/
css-effect.ttl
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
@prefix : <http://www.w3id.org/plattfom-i40/css-effect#> .
@prefix CSS: <http://www.w3id.org/hsu-aut/css#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix CSSE: <http://www.w3id.org/plattfom-i40/css-effect#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://www.w3id.org/plattfom-i40/css-effect#> .
<http://www.w3id.org/plattfom-i40/css-effect> rdf:type owl:Ontology ;
owl:versionIRI <http://www.w3id.org/plattfom-i40/css-effect/0.0.2> ;
owl:imports <http://www.w3id.org/hsu-aut/css/1.0.1> ;
rdfs:comment """A lightweight ontology module that defines effects in the context of manufacturing. An effect is defined as the delta in properties between two states. On the one hand, certain effects are typically required. On the other hand, effects are achieved by capabilities. There are four types of effects, which can be considered views focusing on a subset of properties:
A ProductEffect is an effect in relation to product properties.
A ProcesstEffect is an effect in relation to process properties.
A ResourceEffect is an effect in relation to resource properties.
An EnvironmentEffect is an effect in relation to environment properties.
While a required effect may match a capability's effect in one view, an overall match is only achieved if all four effects match.
This module is intended as an extension of the CSS ontology (http://www.w3id.org/hsu-aut/css)."""@en .
#################################################################
# Object Properties
#################################################################
### http://www.w3id.org/plattfom-i40/css-effect#achievesEffect
CSSE:achievesEffect rdf:type owl:ObjectProperty ;
rdfs:domain CSS:Capability ;
rdfs:range CSSE:Effect .
### http://www.w3id.org/plattfom-i40/css-effect#hasSourceState
CSSE:hasSourceState rdf:type owl:ObjectProperty ;
rdfs:domain CSSE:Transition ;
rdfs:range CSSE:SourceState .
### http://www.w3id.org/plattfom-i40/css-effect#hasTargetState
CSSE:hasTargetState rdf:type owl:ObjectProperty ;
rdfs:domain CSSE:Transition ;
rdfs:range CSSE:TargetState .
#################################################################
# Data properties
#################################################################
### http://www.w3id.org/plattfom-i40/css-effect#hasEnvironmentProperty
CSSE:hasEnvironmentProperty rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf CSSE:hasProperty .
### http://www.w3id.org/plattfom-i40/css-effect#hasProcessProperty
CSSE:hasProcessProperty rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf CSSE:hasProperty .
### http://www.w3id.org/plattfom-i40/css-effect#hasProductProperty
CSSE:hasProductProperty rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf CSSE:hasProperty .
### http://www.w3id.org/plattfom-i40/css-effect#hasProperty
CSSE:hasProperty rdf:type owl:DatatypeProperty ;
rdfs:domain CSSE:Transition .
### http://www.w3id.org/plattfom-i40/css-effect#hasResourceProperty
CSSE:hasResourceProperty rdf:type owl:DatatypeProperty ;
rdfs:subPropertyOf CSSE:hasProperty .
#################################################################
# Classes
#################################################################
### http://www.w3id.org/plattfom-i40/css-effect#Effect
CSSE:Effect rdf:type owl:Class ;
owl:equivalentClass CSSE:Transition ;
rdfs:comment "Effects correspond to transitions" .
### http://www.w3id.org/plattfom-i40/css-effect#EnvironmentEffect
CSSE:EnvironmentEffect rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( CSSE:Effect
[ rdf:type owl:Class ;
owl:unionOf ( [ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasSourceState ;
owl:someValuesFrom [ owl:intersectionOf ( CSSE:State
[ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasEnvironmentProperty ;
owl:someValuesFrom xsd:integer
]
) ;
rdf:type owl:Class
]
]
[ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasTargetState ;
owl:someValuesFrom [ owl:intersectionOf ( CSSE:State
[ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasEnvironmentProperty ;
owl:someValuesFrom xsd:integer
]
) ;
rdf:type owl:Class
]
]
)
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf CSSE:Effect .
### http://www.w3id.org/plattfom-i40/css-effect#ProcessEffect
CSSE:ProcessEffect rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( CSSE:Effect
[ rdf:type owl:Class ;
owl:unionOf ( [ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasSourceState ;
owl:someValuesFrom [ owl:intersectionOf ( CSSE:State
[ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasProcessProperty ;
owl:someValuesFrom xsd:integer
]
) ;
rdf:type owl:Class
]
]
[ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasTargetState ;
owl:someValuesFrom [ owl:intersectionOf ( CSSE:State
[ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasProcessProperty ;
owl:someValuesFrom xsd:integer
]
) ;
rdf:type owl:Class
]
]
)
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf CSSE:Effect .
### http://www.w3id.org/plattfom-i40/css-effect#ProductEffect
CSSE:ProductEffect rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( CSSE:Effect
[ rdf:type owl:Class ;
owl:unionOf ( [ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasSourceState ;
owl:someValuesFrom [ owl:intersectionOf ( CSSE:State
[ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasProductProperty ;
owl:someValuesFrom xsd:integer
]
) ;
rdf:type owl:Class
]
]
[ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasTargetState ;
owl:someValuesFrom [ owl:intersectionOf ( CSSE:State
[ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasProductProperty ;
owl:someValuesFrom xsd:integer
]
) ;
rdf:type owl:Class
]
]
)
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf CSSE:Effect .
### http://www.w3id.org/plattfom-i40/css-effect#ResourceEffect
CSSE:ResourceEffect rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( CSSE:Effect
[ rdf:type owl:Class ;
owl:unionOf ( [ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasSourceState ;
owl:someValuesFrom [ owl:intersectionOf ( CSSE:State
[ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasResourceProperty ;
owl:someValuesFrom xsd:integer
]
) ;
rdf:type owl:Class
]
]
[ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasTargetState ;
owl:someValuesFrom [ owl:intersectionOf ( CSSE:State
[ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasResourceProperty ;
owl:someValuesFrom xsd:integer
]
) ;
rdf:type owl:Class
]
]
)
]
) ;
rdf:type owl:Class
] ;
rdfs:subClassOf CSSE:Effect .
### http://www.w3id.org/plattfom-i40/css-effect#SourceState
CSSE:SourceState rdf:type owl:Class ;
rdfs:subClassOf CSSE:State .
### http://www.w3id.org/plattfom-i40/css-effect#State
CSSE:State rdf:type owl:Class .
### http://www.w3id.org/plattfom-i40/css-effect#TargetState
CSSE:TargetState rdf:type owl:Class ;
rdfs:subClassOf CSSE:State .
### http://www.w3id.org/plattfom-i40/css-effect#Transition
CSSE:Transition rdf:type owl:Class ;
owl:equivalentClass [ owl:intersectionOf ( [ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasSourceState ;
owl:someValuesFrom CSSE:State
]
[ rdf:type owl:Restriction ;
owl:onProperty CSSE:hasTargetState ;
owl:someValuesFrom CSSE:State
]
) ;
rdf:type owl:Class
] ;
rdfs:comment "A transition is something that connects a source and a target state." .
#################################################################
# Individuals
#################################################################
### http://www.w3id.org/plattfom-i40/css-effect#s1
CSSE:s1 rdf:type owl:NamedIndividual .
### http://www.w3id.org/plattfom-i40/css-effect#s2
CSSE:s2 rdf:type owl:NamedIndividual .
### http://www.w3id.org/plattfom-i40/css-effect#t
CSSE:t rdf:type owl:NamedIndividual ;
CSSE:hasSourceState CSSE:s1 ;
CSSE:hasTargetState CSSE:s2 .
### Generated by the OWL API (version 4.5.26.2023-07-17T20:34:13Z) https://github.com/owlcs/owlapi