forked from emmo-repo/battery-testing-ontology
-
Notifications
You must be signed in to change notification settings - Fork 0
/
battery-testing-ontology.ttl
767 lines (680 loc) · 37.9 KB
/
battery-testing-ontology.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
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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
@prefix : <http://w3id.org/emmo-bto/bto#> .
@prefix bto: <http://w3id.org/emmo-bto/bto#> .
@prefix emmo: <https://w3id.org/emmo#> .
@prefix chameo: <http://w3id.org/emmo-chameo/chameo#> .
@prefix domain-battery: <https://w3id.org/emmo/domain/battery/battery#> .
@prefix domain-electrochemistry: <https://w3id.org/emmo/domain/electrochemistry/electrochemistry#> .
@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 foaf: <http://xmlns.com/foaf/0.1/> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@base <http://w3id.org/emmo-bto/bto> .
<http://w3id.org/emmo-bto/bto> rdf:type owl:Ontology ;
owl:versionIRI <http://w3id.org/emmo-bto/1.0.0-beta1/bto> ;
owl:imports
<http://w3id.org/emmo-chameo/chameo> ,
<https://w3id.org/emmo/1.0.0-beta5/multiperspective/symbolic> ,
<https://w3id.org/emmo/domain/battery/battery> ,
<https://w3id.org/emmo/domain/battery/batteryquantities> ,
<https://w3id.org/emmo/domain/electrochemistry/electrochemistry> ,
<https://w3id.org/emmo/domain/electrochemistry/electrochemicalquantities> ;
# Already imported by CHAMEO:
# <http://w3id.org/emmo/mereocausality> ,
# <http://w3id.org/emmo/disciplines/metrology> ,
# <http://w3id.org/emmo/disciplines/math> ,
# <http://w3id.org/emmo/disciplines/manufacturing> ,
# <http://w3id.org/emmo/perspectives/data> ,
# <http://w3id.org/emmo/perspectives/semiotics> ,
# <http://w3id.org/emmo/multiperspective/persholistic> ,
# <http://w3id.org/emmo/multiperspective/workflow> ,
dcterms:abstract "Battery Testing Ontology."@en ;
dcterms:bibliographicCitation "Work under review - not available yet" ;
dcterms:contributor <https://orcid.org/0000-0002-9668-6961>, <https://orcid.org/0000-0002-5174-8508>, <https://orcid.org/0000-0002-4181-2852> ;
dcterms:creator <https://orcid.org/0000-0002-9668-6961>, <https://orcid.org/0000-0002-5174-8508>, <https://orcid.org/0000-0002-4181-2852> ;
dcterms:created "2023-03-09" ;
dcterms:description "Battery Testing Ontology"@en ;
dcterms:license "https://creativecommons.org/licenses/by/4.0/legalcode" ;
dcterms:publisher "EMMC ASBL" ;
dcterms:title "Battery Testing Ontology"@en ;
dcterms:modified "" ;
dcterms:source "" ;
dcterms:issued "" ;
<http://purl.org/vocab/vann/preferredNamespacePrefix> "bto"@en ;
<http://purl.org/vocab/vann/preferredNamespaceUri> "http://w3id.org/emmo-bto/bto" ;
rdfs:comment """Contacts:
Gerhard Goldbeck
Goldbeck Consulting Ltd (UK)
email: [email protected]"""@en ;
owl:backwardCompatibleWith "" ;
owl:priorVersion "" ;
foaf:logo "" ;
<http://purl.org/ontology/bibo/status> "" ;
<http://purl.org/ontology/bibo/doi> "" ;
owl:versionInfo "1.0.0" .
<https://orcid.org/0000-0002-9668-6961> a foaf:Person ;
rdfs:label "Daniele Toti" ;
skos:prefLabel "Daniele Toti" ;
foaf:name "Daniele Toti" ;
rdfs:comment "" .
<https://orcid.org/0000-0002-5174-8508> a foaf:Person ;
rdfs:label "Pierluigi Del Nostro" ;
skos:prefLabel "Pierluigi Del Nostro" ;
foaf:name "Pierluigi Del Nostro" ;
rdfs:comment "" .
<https://orcid.org/0000-0002-4181-2852> a foaf:Person ;
rdfs:label "Gerhard Goldbeck" ;
skos:prefLabel "Gerhard Goldbeck" ;
foaf:name "Gerhard Goldbeck" ;
rdfs:comment "" .
####### EMMO mapping:
### Component -> multiperspective-persholistic EMMO_f76884f7_964e_488e_9bb7_1b2453e9e817
### MeasurementUnit -> disciplines-metrology EMMO_b081b346_7279_46ef_9a3d_2c088fcd79f4
### Property -> perspectives-semiotics EMMO_b7bcff25_ffc3_474e_9ab5_01b1664bd4ba
emmo:Component owl:equivalentClass emmo:EMMO_f76884f7_964e_488e_9bb7_1b2453e9e817 .
emmo:Manufacturing owl:equivalentClass emmo:EMMO_c0afb341_7d31_4883_a307_ae4606df2a1b .
emmo:MeasurementUnit owl:equivalentClass emmo:EMMO_b081b346_7279_46ef_9a3d_2c088fcd79f4 .
emmo:Property owl:equivalentClass emmo:EMMO_b7bcff25_ffc3_474e_9ab5_01b1664bd4ba .
### hasProperty -> perspectives-semiotics EMMO_e1097637_70d2_4895_973f_2396f04fa204
### hasProperPart -> mereocausality EMMO_9380ab64_0363_4804_b13f_3a8a94119a76
### hasReferenceUnit -> disciplines-metrology EMMO_67fc0a36_8dcb_4ffa_9a43_31074efa3296
emmo:hasProperty owl:equivalentProperty emmo:EMMO_e1097637_70d2_4895_973f_2396f04fa204 .
emmo:hasProperPart owl:equivalentProperty emmo:EMMO_9380ab64_0363_4804_b13f_3a8a94119a76 .
emmo:hasReferenceUnit owl:equivalentProperty emmo:EMMO_67fc0a36_8dcb_4ffa_9a43_31074efa3296 .
### hasDataValue -> perspectives-data EMMO_b6292331_94af_4f00_976b_ea55960c2f1c
### hasNumericalValue -> disciplines-math EMMO_faf79f53_749d_40b2_807c_d34244c192f4
### hasStringValue -> multiperspective-symbolic EMMO_02face50_43a1_40ce_a909_dfe54d5e186b
emmo:hasDataValue owl:equivalentProperty emmo:EMMO_b6292331_94af_4f00_976b_ea55960c2f1c .
emmo:hasNumericalValue owl:equivalentProperty emmo:EMMO_faf79f53_749d_40b2_807c_d34244c192f4 .
emmo:hasStringValue owl:equivalentProperty emmo:EMMO_02face50_43a1_40ce_a909_dfe54d5e186b .
### hasBeginTask -> multiperspective-workflow EMMO_4ab7fb52_cec3_4c00_90c0_5648f01e3296
### hasEndTask -> multiperspective-workflow EMMO_92227f7f_22e9_4b19_a011_920eac3c7b75
### hasInput -> multiperspective-persholistic EMMO_36e69413_8c59_4799_946c_10b05d266e22
### hasNext -> mereocausality EMMO_499e24a5_5072_4c83_8625_fe3f96ae4a8d
### hasOutput -> multiperspective-persholistic EMMO_c4bace1d_4db0_4cd3_87e9_18122bae2840
### hasTemporaryParticipant -> multiperspective-persholistic EMMO_35c29eb6_f57e_48d8_85af_854f9e926e77
### hasTask -> multiperspective-workflow EMMO_70da982d_1810_4b01_9630_a28e216ecd9a
emmo:hasBeginTask owl:equivalentProperty emmo:EMMO_4ab7fb52_cec3_4c00_90c0_5648f01e3296 .
emmo:hasEndTask owl:equivalentProperty emmo:EMMO_92227f7f_22e9_4b19_a011_920eac3c7b75 .
emmo:hasInput owl:equivalentProperty emmo:EMMO_36e69413_8c59_4799_946c_10b05d266e22 .
emmo:hasNext owl:equivalentProperty emmo:EMMO_499e24a5_5072_4c83_8625_fe3f96ae4a8d .
emmo:hasOutput owl:equivalentProperty emmo:EMMO_c4bace1d_4db0_4cd3_87e9_18122bae2840 .
emmo:hasTemporaryParticipant owl:equivalentProperty emmo:EMMO_35c29eb6_f57e_48d8_85af_854f9e926e77 .
emmo:hasTask owl:equivalentProperty emmo:EMMO_70da982d_1810_4b01_9630_a28e216ecd9a .
####### CHAMEO classes and properties:
### CharacterisationEnvironment
### CharacterisationInstrument
### CharacterisationMeasurementProcess
### CharacterisationMethod
### Holder
### MeasurementParameter
### RawData
### ReferenceSample
### Sample
### SamplePreparation
### hasCharacterisationEnvironment
### hasCharacterisationEnvironmentProperty
### hasCharacterisationLocation
### hasDataset
### hasHardwareSpecification
### hasMeasurementParameter
### hasMeasurementSample
####### Battery Domain Ontology mapping:
### Battery
domain-battery:Battery owl:equivalentClass domain-battery:battery_74ed2670_657d_4f0b_b0a6_3f13bc2e9c17 .
### BatteryMeasurement
domain-battery:BatteryMeasurement owl:equivalentClass domain-battery:battery_6c481323_498b_42c6_915a_53490f409430 .
### BatteryMeasurementResult
# domain-battery:BatteryMeasurementResult owl:equivalentClass domain-battery:battery_14ea92c1_2682_4c52_83a5_632adcfdb1ce .
### BatteryTimeSeriesDataSet
domain-battery:BatteryTimeSeriesDataSet owl:equivalentClass domain-battery:battery_d9b99b14_44e8_473b_af8f_2a160429df69 .
###### Electrochemistry Domain Ontology mapping:
### Anode
domain-electrochemistry:Anode owl:equivalentClass domain-electrochemistry:electrochemistry_b6319c74_d2ce_48c0_a75a_63156776b302 ;
rdfs:subClassOf bto:BatteryComponent .
### Cathode
domain-electrochemistry:Cathode owl:equivalentClass domain-electrochemistry:electrochemistry_35c650ab_3b23_4938_b312_1b0dede2e6d5 ;
rdfs:subClassOf bto:BatteryComponent .
### FormFactor
domain-electrochemistry:FormFactor owl:equivalentClass domain-electrochemistry:electrochemistry_1586ef26_6d30_49e3_ae32_b4c9fc181941 .
### OutputCable
domain-electrochemistry:OutputCable owl:equivalentClass domain-electrochemistry:electrochemistry_76df6e7b_fc3b_4a1f_98b1_0ca9c0539e4c .
bto:BatteryTestingOntology a owl:Class ;
rdfs:label "BatteryTestingOntology"@en ;
skos:prefLabel "BatteryTestingOntology"@en ;
rdfs:comment "This is the root class of the BTO ontology, introduced for grouping all of BTO's classes under a single parent class, each at a different hierarchical position."@en .
bto:btoObjectProperty a owl:ObjectProperty ;
rdfs:label "btoObjectProperty"@en ;
skos:prefLabel "btoObjectProperty"@en ;
rdfs:comment "This is the root object property of the BTO ontology, introduced for grouping all of BTO's object properties under a single parent object property."@en .
bto:btoDatatypeProperty a owl:DatatypeProperty ;
rdfs:label "btoDatatypeProperty"@en ;
skos:prefLabel "btoDatatypeProperty"@en ;
rdfs:comment "This is the root datatype property of the BTO ontology, introduced for grouping all of BTO's datatype properties under a single parent datatype property."@en .
bto:BatteryCharacterizationMethod a owl:Class ;
rdfs:label "BatteryCharacterizationMethod"@en ;
skos:prefLabel "BatteryCharacterizationMethod"@en ;
skos:altLabel "BatteryCharacterisationMethod"@en ;
rdfs:comment "The description of the overall characterization method for a battery. It is usually made up of different steps, or tasks (e.g. battery measurement process, battery sample preparation)."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf chameo:CharacterisationMethod ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasTask ;
# emmo:hasTask
owl:someValuesFrom bto:CalibrationForBatteryCharacterization ] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasTask ;
# emmo:hasTask
owl:someValuesFrom bto:BatterySamplePreparation ] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasTask ;
# emmo:hasTask
owl:someValuesFrom bto:BatteryMeasurementProcess ] .
bto:BatteryComponent a owl:Class ;
rdfs:label "BatteryComponent"@en ;
skos:prefLabel "BatteryComponent"@en ;
rdfs:comment "A physical part of a battery."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf emmo:Component .
# bto:Cathode a owl:Class ;
# rdfs:label "Cathode"@en ;
# skos:prefLabel "Cathode"@en ;
# rdfs:comment "The positive electrode found in a battery. It is thus a component of a battery."@en ;
# rdfs:subClassOf bto:BatteryComponent .
# bto:Anode a owl:Class ;
# rdfs:label "Anode"@en ;
# skos:prefLabel "Anode"@en ;
# rdfs:comment "The negative electrode found in a battery. It is thus a component of a battery."@en ;
# rdfs:subClassOf bto:BatteryComponent .
########################################
### BatterySample and its properties ###
########################################
bto:BatterySample a owl:Class ;
rdfs:label "BatterySample"@en ;
skos:prefLabel "BatterySample"@en ;
rdfs:comment "A battery selected from a larger set to be used in a battery testing procedure."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf chameo:Sample ;
rdfs:subClassOf domain-battery:Battery .
bto:RawBatterySample a owl:Class ;
rdfs:label "RawBatterySample"@en ;
skos:prefLabel "RawBatterySample"@en ;
rdfs:comment "A battery sample to be prepared for testing. It is thus the input of the process of preparing a battery sample."@en ;
rdfs:subClass chameo:RawSample ;
rdfs:subClassOf bto:BatterySample .
bto:PreparedatterySample a owl:Class ;
rdfs:label "PreparedBatterySample"@en ;
skos:prefLabel "PreparedBatterySample"@en ;
rdfs:comment "A battery sample that has been prepared for testing. It is thus the output of the process of preparing a battery sample."@en ;
rdfs:subClassOf chameo:PreparedSample ;
rdfs:subClassOf bto:BatterySample .
bto:BatterySampleProperty a owl:Class ;
rdfs:label "BatterySampleProperty"@en ;
skos:prefLabel "BatterySampleProperty"@en ;
rdfs:comment "A characteristic of a battery sample."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf emmo:Property .
# bto:BatteryCellForm a owl:Class ;
# rdfs:label "BatteryCellForm"@en ;
# skos:prefLabel "BatteryCellForm"@en ;
# rdfs:comment "The shape of the cell in a battery sample. It is a property of the sample."@en ;
# rdfs:subClassOf bto:BatterySampleProperty .
bto:BatteryChemistryType a owl:Class ;
rdfs:label "BatteryChemistryType"@en ;
skos:prefLabel "BatteryChemistryType"@en ;
rdfs:comment "The type of chemistry in a battery sample. It is a property of the sample."@en ;
rdfs:subClassOf bto:BatterySampleProperty .
bto:BatteryElectrolyteType a owl:Class ;
rdfs:label "BatteryElectrolyteType"@en ;
skos:prefLabel "BatteryElectrolyteType"@en ;
rdfs:comment "The type of electrolyte in a battery sample. It is a property of the sample."@en ;
rdfs:subClassOf bto:BatterySampleProperty .
bto:BatteryManufacturerName a owl:Class ;
rdfs:label "BatteryManufacturerName"@en ;
skos:prefLabel "BatteryManufacturerName"@en ;
rdfs:comment "The name of the manufacturer of a battery sample. It is a property of the sample."@en ;
rdfs:subClassOf bto:BatterySampleProperty .
bto:BatteryPartNumber a owl:Class ;
rdfs:label "BatteryPartNumber"@en ;
skos:prefLabel "BatteryPartNumber"@en ;
rdfs:comment "The part number, or code, of a battery sample. It is a property of the sample."@en ;
rdfs:subClassOf bto:BatterySampleProperty .
bto:BatteryProductionDate a owl:Class ;
rdfs:label "BatteryProductionDate"@en ;
skos:prefLabel "BatteryProductionDate"@en ;
rdfs:comment "The date reported as the one in which the battery sample has been produced. It is a property of the sample."@en ;
rdfs:subClassOf bto:BatterySampleProperty .
bto:hasBatterySampleProperty a owl:ObjectProperty ;
rdfs:label "hasBatterySampleProperty"@en ;
skos:prefLabel "hasBatterySampleProperty" ;
rdfs:comment "Object property that connects a battery sample with its characteristics (BatterySampleProperties). It is the super-property of a number of more specific object properties."@en ;
rdfs:domain bto:BatterySample ;
rdfs:range bto:BatterySampleProperty ;
rdfs:subPropertyOf emmo:hasProperty ;
rdfs:subPropertyOf bto:btoObjectProperty .
bto:hasCellForm a owl:ObjectProperty ;
rdfs:label "hasCellForm"@en ;
skos:preflabel "hasCellForm"@en ;
rdfs:comment "A specific object property that connects a battery sample with its cell form."@en ;
rdfs:range domain-electrochemistry:FormFactor ;
rdfs:subPropertyOf bto:hasBatterySampleProperty .
bto:hasChemistryType a owl:ObjectProperty ;
rdfs:label "hasChemistryType"@en ;
skos:preflabel "hasChemistryType"@en ;
rdfs:comment "A specific object property that connects a battery sample with its chemistry type."@en ;
rdfs:range bto:BatteryChemistryType ;
rdfs:subPropertyOf bto:hasBatterySampleProperty .
bto:hasElectrolyteType a owl:ObjectProperty ;
rdfs:label "hasElectrolyteType"@en ;
skos:preflabel "hasElectrolyteType"@en ;
rdfs:comment "A specific object property that connects a battery sample with its electrolyte type."@en ;
rdfs:range bto:BatteryElectrolyteType ;
rdfs:subPropertyOf bto:hasBatterySampleProperty .
bto:hasManufacturer a owl:ObjectProperty ;
rdfs:label "hasManufacturer"@en ;
skos:preflabel "hasManufacturer"@en ;
skos:altlabel "hasManufacturer"@en ;
rdfs:comment "A specific object property that connects either a battery sample or its characterization hardware with its manufacturer."@en ;
rdfs:range emmo:Manufacturer ;
rdfs:subPropertyOf bto:btoObjectProperty .
bto:hasPartNumber a owl:ObjectProperty ;
rdfs:label "hasPartNumber"@en ;
skos:preflabel "hasPartNumber"@en ;
rdfs:comment "A specific object property that connects a battery sample with its part number."@en ;
rdfs:range bto:BatteryPartNumber ;
rdfs:subPropertyOf bto:hasBatterySampleProperty .
bto:hasProductionDate a owl:DatatypeProperty ;
rdfs:label "hasProductionDate"@en ;
skos:preflabel "hasProductionDate" ;
rdfs:comment "A specific datatype property that specifies a production date for a battery sample."@en ;
rdfs:range xsd:string ;
rdfs:subPropertyOf bto:btoDatatypeProperty .
# ---------------------------------------------------------------------------
bto:BatteryHolder a owl:Class ;
rdfs:label "BatteryHolder"@en ;
skos:prefLabel "BatteryHolder"@en ;
rdfs:comment "The device that holds the battery in place for the testing procedure."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf chameo:Holder .
# Subclass of emmo:Component
bto:BatteryHolderComponent a owl:Class ;
rdfs:label "BatteryHolderComponent"@en ;
skos:prefLabel "BatteryHolderComponent"@en ;
rdfs:comment "A physical part of the holding device."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf emmo:Component .
bto:BatterySamplePreparation a owl:Class ;
rdfs:label "BatterySamplePreparation"@en ;
skos:prefLabel "BatterySamplePreparation"@en ;
rdfs:comment "A step in the battery characterization method, related to the preparation of the battery sample to be tested. The battery sample, unprepared, is input to this step; the battery sample, prepared, is the output of this step. The holding device is a temporary participant of this step."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf chameo:SamplePreparation ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasInput ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:RawBatterySample ] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasOutput ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:PreparedBatterySample ] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasTemporaryParticipant ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:BatteryHolder ] .
bto:Fixture a owl:Class ;
rdfs:label "Fixture"@en ;
skos:prefLabel "Fixture"@en ;
rdfs:comment "A type of holding device for a battery sample. It may consist of a battery connector and a cable."@en ;
rdfs:subClassOf bto:BatteryHolder ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasProperPart ;
# emmo:hasProperPart
owl:someValuesFrom bto:BatteryConnector ] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasProperPart ;
# emmo:hasProperPart
owl:someValuesFrom bto:Cable ] ;
owl:equivalentClass domain-electrochemistry:OutputCable .
bto:BatteryConnector a owl:Class ;
rdfs:label "BatteryConnector"@en ;
skos:prefLabel "BatteryConnector"@en ;
rdfs:comment "A physical connector that connects a battery sample for the testing procedure."@en ;
rdfs:subClassOf bto:BatteryHolderComponent .
bto:Cable a owl:Class ;
rdfs:label "Cable"@en ;
skos:prefLabel "Cable"@en ;
rdfs:comment "A physical cable that connects a battery sample for the testing procedure."@en ;
rdfs:subClassOf bto:BatteryHolderComponent .
bto:HipotCable a owl:Class ;
rdfs:label "HipotCable"@en ;
skos:prefLabel "HipotCable"@en ;
rdfs:comment "A specific type of cable."@en ;
rdfs:subClassOf bto:Cable .
bto:AlligatorClamps a owl:Class ;
rdfs:label "AlligatorClamps"@en ;
skos:prefLabel "AlligatorClamps"@en ;
rdfs:comment "A specific type of battery connector."@en ;
rdfs:subClassOf bto:BatteryConnector .
# ---------------------------------------------------------------------------
bto:BatteryMeasurementParameter a owl:Class ;
rdfs:label "BatteryMeasurementParameter"@en ;
skos:prefLabel "BatteryMeasurementParameter"@en ;
rdfs:comment "A configuration parameter of a battery measurement step in the testing procedure."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf chameo:MeasurementParameter .
bto:EndTime a owl:Class ;
rdfs:label "EndTime"@en ;
skos:prefLabel "EndTime"@en ;
rdfs:comment "A parameter in the battery measurement step. It specifies the end time of the measurement."@en ;
rdfs:subClassOf bto:BatteryMeasurementParameter .
bto:MaxVoltage a owl:Class ;
rdfs:label "MaxVoltage"@en ;
skos:prefLabel "MaxVoltage"@en ;
rdfs:comment "A parameter in the battery measurement step. It specifies the maximum voltage of the measurement."@en ;
rdfs:subClassOf bto:BatteryMeasurementParameter .
bto:SamplingTime a owl:Class ;
rdfs:label "SamplingTime"@en ;
skos:prefLabel "SamplingTime"@en ;
rdfs:comment "A parameter in the battery measurement step. It specifies the sampling time of the measurement."@en ;
rdfs:subClassOf bto:BatteryMeasurementParameter .
# ---------------------------------------------------------------------------
bto:BatteryMeasurementProcess a owl:Class ;
rdfs:label "BatteryMeasurementProcess"@en ;
skos:prefLabel "BatteryMeasurementProcess"@en ;
rdfs:comment "The measurement step in a battery characterization method. It involves at least a characterization hardware, a characterization environment, a battery sample to be measured, the configuration parameters, the level of accuracy and the location of the measurement. Its output is the trace data of the measurement."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf chameo:CharacterisationMeasurementProcess ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasTemporaryParticipant ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:BatteryCharacterizationHardware ] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasOutput ;
owl:someValuesFrom bto:VoltageData ] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasOutput ;
owl:someValuesFrom bto:CurrentData ] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasOutput ;
owl:someValuesFrom bto:TimeData ] ,
[ rdf:type owl:Restriction ;
owl:onProperty chameo:hasMeasurementSample ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:BatterySample ] ,
[ rdf:type owl:Restriction ;
owl:onProperty chameo:hasCharacterisationEnvironment ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:BatteryCharacterizationEnvironment ] ,
[ rdf:type owl:Restriction ;
owl:onProperty chameo:hasMeasurementParameter ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:MaxVoltage ] ,
[ rdf:type owl:Restriction ;
owl:onProperty chameo:hasMeasurementParameter ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:SamplingTime ] ,
[ rdf:type owl:Restriction ;
owl:onProperty chameo:hasMeasurementParameter ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:EndTime ] ,
[ rdf:type owl:Restriction ;
owl:onProperty chameo:hasAccuracy ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass chameo:Accuracy ] ,
[ rdf:type owl:Restriction ;
owl:onProperty chameo:hasLab ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass chameo:Lab ] ,
[ rdf:type owl:Restriction ;
owl:onProperty chameo:hasOperator ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass chameo:Operator ] ;
rdfs:subClassOf domain-battery:BatteryMeasurement .
# Subclass of emmo:Property
bto:BatteryMeasurementProcessProperty a owl:Class ;
rdfs:label "BatteryMeasurementProcessProperty"@en ;
skos:prefLabel "BatteryMeasurementProcessProperty"@en ;
rdfs:comment "A characteristic of the battery measurement process. It is a super-class of more specific classes."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf emmo:Property .
bto:Accuracy a owl:Class ;
rdfs:label "Accuracy"@en ;
skos:prefLabel "Accuracy"@en ;
rdfs:comment "The level of accuracy of a battery measurement process. It is a property of the process."@en ;
rdfs:subClassOf bto:BatteryMeasurementProcessProperty .
# bto:Location a owl:Class ;
# rdfs:label "Location"@en ;
# skos:prefLabel "Location"@en ;
# rdfs:comment "The location where the battery measurement process takes place. It is a property of the process."@en ;
# rdfs:subClassOf bto:BatteryMeasurementProcessProperty .
bto:TraceData a owl:Class ;
rdfs:label "TraceData"@en ;
skos:prefLabel "TraceData"@en ;
rdfs:comment "The output of a battery measurement process in terms of raw data resulting from the measurement."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf chameo:RawData ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty chameo:hasDataset ;
owl:someValuesFrom domain-battery:BatteryTimeSeriesDataSet ] .
bto:VoltageData a owl:Class ;
rdfs:label "VoltageData"@en ;
skos:prefLabel "VoltageData"@en ;
rdfs:comment "A specific type of trace data output from a battery measurement process, related to the voltage measured."@en ;
rdfs:subClassOf bto:TraceData .
bto:CurrentData a owl:Class ;
rdfs:label "CurrentData"@en ;
skos:prefLabel "CurrentData"@en ;
rdfs:comment "A specific type of trace data output from a battery measurement process, related to the current measured."@en ;
rdfs:subClassOf bto:TraceData .
bto:TimeData a owl:Class ;
rdfs:label "TimeData"@en ;
skos:prefLabel "TimeData"@en ;
rdfs:comment "A specific type of trace data output from a battery measurement process, related to the time intervals of the measurement."@en ;
rdfs:subClassOf bto:TraceData .
bto:BatteryCharacterizationHardware a owl:Class ;
rdfs:label "BatteryCharacterizationHardware"@en ;
skos:prefLabel "BatteryCharacterizationHardware"@en ;
skos:altLabel "Hardware"@en ;
rdfs:comment "The physical apparatus of the battery testing procedure. It is required in a battery measurement process."@en ;
rdfs:subClassOf chameo:CharacterisationInstrument .
bto:BatteryCharacterizationHardwareSpecification a owl:Class ;
rdfs:label "BatteryCharacterizationHardwareSpecification"@en ;
skos:prefLabel "BatteryCharacterizationHardwareSpecification"@en ;
skos:altLabel "BatteryHardwareSpecification"@en ;
rdfs:comment "A characteristic or specification of a battery testing hardware"@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf chameo:CharacterisationHardwareSpecification .
bto:HardwareType a owl:Class ;
rdfs:label "HardwareType"@en ;
skos:prefLabel "HardwareType"@en ;
rdfs:comment "The type of the hardware used for the measurement process."@en ;
rdfs:subClassOf bto:BatteryCharacterizationHardwareSpecification .
bto:HardwareManufacturerName a owl:Class ;
rdfs:label "HardwareManufacturerName"@en ;
skos:prefLabel "HardwareManufacturerName"@en ;
rdfs:comment "The name of the manufacturer of the hardware used for the measurement process."@en ;
rdfs:subClassOf bto:BatteryCharacterizationHardwareSpecification .
bto:HardwareModel a owl:Class ;
rdfs:label "HardwareModel"@en ;
skos:prefLabel "HardwareModel"@en ;
rdfs:comment "The model of the hardware used for the measurement process."@en ;
rdfs:subClassOf bto:BatteryCharacterizationHardwareSpecification .
bto:CurrentSpecification a owl:Class ;
rdfs:label "CurrentSpecification"@en ;
skos:prefLabel "CurrentSpecification"@en ;
rdfs:comment "A specification of the battery characterization hardware, related to the current it can sustain."@en ;
rdfs:subClassOf bto:BatteryCharacterizationHardwareSpecification .
bto:VoltageSpecification a owl:Class ;
rdfs:label "VoltageSpecification"@en ;
skos:prefLabel "VoltageSpecification"@en ;
rdfs:comment "A specification of the battery characterization hardware, related to the voltage it can provide."@en ;
rdfs:subClassOf bto:BatteryCharacterizationHardwareSpecification .
bto:CalibrationForBatteryCharacterization a owl:Class ;
rdfs:label "CalibrationForBatteryCharacterization"@en ;
skos:prefLabel "CalibrationForBatteryCharacterization"@en ;
skos:altLabel "CalibrationForBatteryCharacterisation"@en ;
skos:altLabel "BatteryCharacterizationCalibration"@en ;
skos:altLabel "BatteryCharacterisationCalibration"@en ;
rdfs:comment "The process of calibration of a battery characterization hardware with reference to a voltage source, which produces as output a reference voltage data."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty emmo:hasTemporaryParticipant ;
# emmo:hasTemporaryParticipant
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:BatteryCharacterizationHardware ] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasOutput ;
# emmo:hasOutput
owl:someValuesFrom bto:VoltageData ] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasTemporaryParticipant ;
# emmo:hasTemporaryParticipant
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:VoltageSource ] .
bto:VoltageSource a owl:Class ;
rdfs:label "VoltageSource"@en ;
skos:prefLabel "VoltageSource"@en ;
rdfs:comment "A voltage source used as a reference for the calibration of a battery characterization hardware."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf chameo:ReferenceSample .
bto:hasBatteryCharacterizationHardwareSpecification a owl:ObjectProperty ;
rdfs:label "hasBatteryCharacterizationHardwareSpecification"@en ;
skos:prefLabel "hasBatteryCharacterizationHardwareSpecification"@en ;
skos:altLabel "hasBatteryCharacterisationHardwareSpecification"@en ;
skos:altLabel "hasHardwareSpecification"@en ;
skos:altLabel "hasHardwareProperty"@en ;
skos:altLabel "hasBatteryCharacterizationHardwareProperty"@en ;
skos:altLabel "hasBatteryCharacterisationHardwareProperty"@en ;
rdfs:comment "Object property that connects a battery characterization hardware with its specifications. It is a super-property of more specific object properties."@en ;
rdfs:domain bto:BatteryCharacterizationHardware ;
rdfs:range bto:BatteryCharacterizationHardwareSpecification ;
rdfs:subPropertyOf chameo:hasHardwareSpecification ;
rdfs:subPropertyOf bto:btoObjectProperty .
bto:hasHardwareType a owl:ObjectProperty ;
rdfs:label "hasHardwareType"@en ;
skos:preflabel "hasHardwareType"@en ;
rdfs:comment "A specific object property that connects a battery characterization hardware with its hardware type."@en ;
rdfs:range bto:HardwareType ;
rdfs:subPropertyOf bto:hasBatteryCharacterizationHardwareSpecification .
bto:hasHardwareModel a owl:ObjectProperty ;
rdfs:label "hasHardwareModel"@en ;
skos:preflabel "hasHardwareModel"@en ;
rdfs:comment "A specific object property that connects a battery characterization hardware with its hardware model."@en ;
rdfs:range bto:HardwareModel ;
rdfs:subPropertyOf bto:hasBatteryCharacterizationHardwareSpecification .
bto:hasCurrentSpecification a owl:ObjectProperty ;
rdfs:label "hasCurrentSpecification"@en ;
skos:preflabel "hasCurrentSpecification"@en ;
rdfs:comment "A specific object property that connects a battery characterization hardware with its current specification."@en ;
rdfs:range bto:CurrentSpecification ;
rdfs:subPropertyOf bto:hasBatteryCharacterizationHardwareSpecification .
bto:hasVoltageSpecification a owl:ObjectProperty ;
rdfs:label "hasVoltageSpecification"@en ;
skos:preflabel "hasVoltageSpecification"@en ;
rdfs:comment "A specific object property that connects a battery characterization hardware with its voltage specification."@en ;
rdfs:range bto:VoltageSpecification ;
rdfs:subPropertyOf bto:hasBatteryCharacterizationHardwareSpecification .
# ---------------------------------------------------------------------------
bto:BatteryCharacterizationEnvironment a owl:Class ;
rdfs:label "BatteryCharacterizationEnvironment"@en ;
skos:prefLabel "BatteryCharacterizationEnvironment"@en ;
skos:altLabel "BatteryCharacterisationEnvironment"@en ;
skos:altLabel "Ambient"@en ;
skos:altLabel "Environment"@en ;
rdfs:comment "The environment in which a battery characterization takes place. It may have a number of properties, or specifications, including pressure, humidity, temperature and light."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf chameo:CharacterisationEnvironment ,
[ rdf:type owl:Restriction ;
owl:onProperty chameo:hasCharacterisationEnvironmentProperty ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:AmbientPressure ] ,
[ rdf:type owl:Restriction ;
owl:onProperty chameo:hasCharacterisationEnvironmentProperty ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:AmbientHumidity ] ,
[ rdf:type owl:Restriction ;
owl:onProperty chameo:hasCharacterisationEnvironmentProperty ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:AmbientTemperature ] ,
[ rdf:type owl:Restriction ;
owl:onProperty chameo:hasCharacterisationEnvironmentProperty ;
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:AmbientLight ] .
# Subclass of emmo:Property
bto:BatteryCharacterizationEnvironmentProperty a owl:Class ;
rdfs:label "BatteryCharacterizationEnvironmentProperty"@en ;
skos:prefLabel "BatteryCharacterizationEnvironmentProperty"@en ;
rdfs:comment "A property of a battery characterization environment, e.g. temperature, pressure, humidity, light. It is a super-class of more specific classes."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf emmo:Property .
bto:AmbientPressure a owl:Class ;
rdfs:label "AmbientPressure"@en ;
skos:prefLabel "AmbientPressure"@en ;
rdfs:comment "A specific property of a battery characterization environment, related to its level of pressure."@en ;
rdfs:subClassOf bto:BatteryCharacterizationEnvironmentProperty ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasReferenceUnit ;
# emmo:hasReferenceUnit
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:AmbientPressureUnit ] .
bto:AmbientHumidity a owl:Class ;
rdfs:label "AmbientHumidity"@en ;
skos:prefLabel "AmbientHumidity"@en ;
rdfs:comment "A specific property of a battery characterization environment, related to its level of humidity."@en ;
rdfs:subClassOf bto:BatteryCharacterizationEnvironmentProperty ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasReferenceUnit ;
# emmo:hasReferenceUnit
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:AmbientHumidityUnit ] .
bto:AmbientTemperature a owl:Class ;
rdfs:label "AmbientTemperature"@en ;
skos:prefLabel "AmbientTemperature"@en ;
rdfs:comment "A specific property of a battery characterization environment, related to its level of temperature."@en ;
rdfs:subClassOf bto:BatteryCharacterizationEnvironmentProperty ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasReferenceUnit ;
# emmo:hasReferenceUnit
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:AmbientTemperatureUnit ] .
bto:AmbientLight a owl:Class ;
rdfs:label "AmbientLight"@en ;
skos:prefLabel "AmbientLight"@en ;
rdfs:comment "A specific property of a battery characterization environment, related to its level of luminosity (amount of light)."@en ;
rdfs:subClassOf bto:BatteryCharacterizationEnvironmentProperty ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:hasReferenceUnit ;
# emmo:hasReferenceUnit
owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
owl:onClass bto:AmbientLightUnit ] .
# Subclass of emmo:MeasurementUnit
bto:BatteryCharacterizationEnvironmentMeasurementUnit a owl:Class ;
rdfs:label "BatteryCharacterizationEnvironmentMeasurementUnit"@en ;
skos:prefLabel "BatteryCharacterizationEnvironmentMeasurementUnit"@en ;
skos:altLabel "BatteryAmbientMeasurementUnit"@en ;
rdfs:comment "Measurement unit of a specification of a battery characterization hardware. It is a super-class of more specific classes."@en ;
rdfs:subClassOf bto:BatteryTestingOntology ;
rdfs:subClassOf emmo:MeasurementUnit .
bto:AmbientTemperatureUnit a owl:Class ;
rdfs:label "AmbientTemperatureUnit"@en ;
skos:prefLabel "AmbientTemperatureUnit"@en ;
rdfs:comment "The measurement unit of the temperature of a battery characterization hardware."@en ;
rdfs:subClassOf bto:BatteryCharacterizationEnvironmentMeasurementUnit .
bto:AmbientHumidityUnit a owl:Class ;
rdfs:label "AmbientHumidityUnit"@en ;
skos:prefLabel "AmbientHumidityUnit"@en ;
rdfs:comment "The measurement unit of the humidity of a battery characterization hardware."@en ;
rdfs:subClassOf bto:BatteryCharacterizationEnvironmentMeasurementUnit .
bto:AmbientPressureUnit a owl:Class ;
rdfs:label "AmbientPressureUnit"@en ;
skos:prefLabel "AmbientPressureUnit"@en ;
rdfs:comment "The measurement unit of the pressure of a battery characterization hardware."@en ;
rdfs:subClassOf bto:BatteryCharacterizationEnvironmentMeasurementUnit .
bto:AmbientLightUnit a owl:Class ;
rdfs:label "AmbientLightUnit"@en ;
skos:prefLabel "AmbientLightUnit"@en ;
rdfs:comment "The measurement unit of the light of a battery characterization hardware."@en ;
rdfs:subClassOf bto:BatteryCharacterizationEnvironmentMeasurementUnit .