-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathBVCO.ttl
More file actions
2481 lines (1965 loc) · 178 KB
/
BVCO.ttl
File metadata and controls
2481 lines (1965 loc) · 178 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
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
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <https://bvco.ontology.link/> .
@prefix gpo: <https://gpo.ontology.link/> .
@prefix isq: <http://emmo.info/emmo/middle/isq#> .
@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 emmo: <http://emmo.info/emmo#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix terms: <http://purl.org/dc/terms/> .
@prefix annotations: <http://emmo.info/emmo/top/annotations#> .
@base <https://bvco.ontology.link/> .
<https://bvco.ontology.link> rdf:type owl:Ontology ;
owl:versionIRI <https://bvco.ontology.link/0.4.3> ;
owl:imports <http://emmo.info/emmo/1.0.0-beta4> ,
<https://gpo.ontology.link> ,
<https://big-map.github.io/BattINFO/ontology/BattINFO> ;
terms:abstract "Ontology to model processes along the Battery value chain"@en ;
terms:creator "Lukas Gold <lukas.gold@isc.fraunhofer.de>"@en ,
"Simon Stier <simon.stier@isc.fraunhofer.de>"@en ;
terms:license "https://creativecommons.org/licenses/by/4.0/legalcode"@en .
#################################################################
# Object Properties
#################################################################
### http://emmo.info/emmo#EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f
emmo:EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f rdf:type owl:ObjectProperty .
### http://emmo.info/emmo#EMMO_4d6504f1_c470_4ce9_b941_bbbebc9ab05d
emmo:EMMO_4d6504f1_c470_4ce9_b941_bbbebc9ab05d rdf:type owl:ObjectProperty .
### http://emmo.info/emmo#EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a
emmo:EMMO_ae2d1a96_bfa1_409a_a7d2_03d69e8a125a rdf:type owl:ObjectProperty .
### https://bvco.ontology.link/BVCO_b0cbf530_bc47_454a_a76e_a79dd23838d6
:BVCO_b0cbf530_bc47_454a_a76e_a79dd23838d6 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :BVCO_d25fb133_7160_4265_9655_4a2a8ae0ae87 ;
skos:prefLabel "hasPositiveElectrode"@en .
### https://bvco.ontology.link/BVCO_cdc65ff3_07e6_4995_911d_e945d8945f15
:BVCO_cdc65ff3_07e6_4995_911d_e945d8945f15 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf :BVCO_d25fb133_7160_4265_9655_4a2a8ae0ae87 ;
skos:prefLabel "hasNegativeElectrode"@en .
### https://bvco.ontology.link/BVCO_d25fb133_7160_4265_9655_4a2a8ae0ae87
:BVCO_d25fb133_7160_4265_9655_4a2a8ae0ae87 rdf:type owl:ObjectProperty ;
rdfs:subPropertyOf emmo:EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f ;
skos:prefLabel "hasFunctionalPart"@en .
#################################################################
# Classes
#################################################################
### http://emmo.info/battery#battery_3b0b0d6e_8b0e_4491_885e_8421d3eb3b69
<http://emmo.info/battery#battery_3b0b0d6e_8b0e_4491_885e_8421d3eb3b69> rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_d8dbd8a5_cb8e_455a_ad78_720dd9713303
] .
### http://emmo.info/battery#battery_74ed2670_657d_4f0b_b0a6_3f13bc2e9c17
<http://emmo.info/battery#battery_74ed2670_657d_4f0b_b0a6_3f13bc2e9c17> rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_45ddffbd_d4fa_496d_a4d8_5521194b5674
] .
### http://emmo.info/battery#battery_bcf8f9dd_f493_4547_a5a3_e14b1f4c0f5f
<http://emmo.info/battery#battery_bcf8f9dd_f493_4547_a5a3_e14b1f4c0f5f> rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_925d92f8_5a11_4434_a9ab_a2541ca34d53
] .
### http://emmo.info/battery#battery_efc38420_ecbb_42e4_bb3f_208e7c417098
<http://emmo.info/battery#battery_efc38420_ecbb_42e4_bb3f_208e7c417098> rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_72f3c7f8_0747_46d8_a694_f9a757a12c18
] .
### http://emmo.info/electrochemistry#electrochemistry_0508a114_544a_4f54_a7de_9b947fb4b618
<http://emmo.info/electrochemistry#electrochemistry_0508a114_544a_4f54_a7de_9b947fb4b618> rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_e9d98522_9bf2_41dc_bc4c_6f10348b6a6e
] .
### http://emmo.info/electrochemistry#electrochemistry_0f007072-a8dd-4798-b865-1bf9363be627
<http://emmo.info/electrochemistry#electrochemistry_0f007072-a8dd-4798-b865-1bf9363be627> rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_38ce2e41_8b62_4851_a5ac_47d77a6ffa3c
] .
### http://emmo.info/electrochemistry#electrochemistry_331e6cca_f260_4bf8_af55_35304fe1bbe0
<http://emmo.info/electrochemistry#electrochemistry_331e6cca_f260_4bf8_af55_35304fe1bbe0> rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_a2b509d5_32a0_404b_80b6_3f5ec39b851f
] .
### http://emmo.info/electrochemistry#electrochemistry_609b340f_3450_4a10_95c2_c457e3eb8a89
<http://emmo.info/electrochemistry#electrochemistry_609b340f_3450_4a10_95c2_c457e3eb8a89> rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_8f81a6c8_532d_459d_ba5a_969d02face9c
] .
### http://emmo.info/electrochemistry#electrochemistry_6f2c88c9_5c04_4953_a298_032cc3ab9b77
<http://emmo.info/electrochemistry#electrochemistry_6f2c88c9_5c04_4953_a298_032cc3ab9b77> rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_adeeea10_13a2_48b1_93f5_e54290d73e32
] .
### http://emmo.info/electrochemistry#electrochemistry_757eae08_4d43_42d4_8b4e_8a0bfd2f9a1c
<http://emmo.info/electrochemistry#electrochemistry_757eae08_4d43_42d4_8b4e_8a0bfd2f9a1c> rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_330f8958_ad34_41e7_b119_25d03b1e0761
] .
### http://emmo.info/electrochemistry#electrochemistry_82fef384_8eec_4765_b707_5397054df594
<http://emmo.info/electrochemistry#electrochemistry_82fef384_8eec_4765_b707_5397054df594> rdf:type owl:Class .
### http://emmo.info/electrochemistry#electrochemistry_9da958fc_f76d_4654_8a78_99b5f98c118c
<http://emmo.info/electrochemistry#electrochemistry_9da958fc_f76d_4654_8a78_99b5f98c118c> rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_1f5c3335_565a_4feb_b0aa_024962850b5d
] .
### http://emmo.info/electrochemistry#electrochemistry_fb0d9eef_92af_4628_8814_e065ca255d59
<http://emmo.info/electrochemistry#electrochemistry_fb0d9eef_92af_4628_8814_e065ca255d59> rdf:type owl:Class ;
rdfs:subClassOf [ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_1f9ffbd0_9c82_4a65_9f57_bc88712fa0fe
] .
### http://emmo.info/emmo#EMMO_057e7d57_aff0_49de_911a_8861d85cef40
emmo:EMMO_057e7d57_aff0_49de_911a_8861d85cef40 rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_31ec09ba_1713_42cb_83c7_b38bf6f9ced2
emmo:EMMO_31ec09ba_1713_42cb_83c7_b38bf6f9ced2 rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_43e9a05d_98af_41b4_92f6_00f79a09bfce
emmo:EMMO_43e9a05d_98af_41b4_92f6_00f79a09bfce rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_49804605_c0fe_4538_abda_f70ba1dc8a5d
emmo:EMMO_49804605_c0fe_4538_abda_f70ba1dc8a5d rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_5b2222df_4da6_442f_8244_96e9e45887d1
emmo:EMMO_5b2222df_4da6_442f_8244_96e9e45887d1 rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_68390bfb_e307_479d_8f78_d66d8773cb1d
emmo:EMMO_68390bfb_e307_479d_8f78_d66d8773cb1d rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_71d1c8f0_c6e3_44b5_a4b6_1b74ff35698a
emmo:EMMO_71d1c8f0_c6e3_44b5_a4b6_1b74ff35698a rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_7509da43_56b1_4d7f_887a_65d1663df4ba
emmo:EMMO_7509da43_56b1_4d7f_887a_65d1663df4ba rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_77e2e601_5ecb_450b_b563_92f096997832
emmo:EMMO_77e2e601_5ecb_450b_b563_92f096997832 rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_86ca9b93_1183_4b65_81b8_c0fcd3bba5ad
emmo:EMMO_86ca9b93_1183_4b65_81b8_c0fcd3bba5ad rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_89a0c87c_0804_4013_937a_6fe234d9499c
emmo:EMMO_89a0c87c_0804_4013_937a_6fe234d9499c rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_a2b006f2_bbfd_4dba_bcaa_3fca20cd6be1
emmo:EMMO_a2b006f2_bbfd_4dba_bcaa_3fca20cd6be1 rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_a4d66059_5dd3_4b90_b4cb_10960559441b
emmo:EMMO_a4d66059_5dd3_4b90_b4cb_10960559441b rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_b21a56ed_f969_4612_a6ec_cb7766f7f31d
emmo:EMMO_b21a56ed_f969_4612_a6ec_cb7766f7f31d rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_c46f091c_0420_4c1a_af30_0a2c8ebcf7d7
emmo:EMMO_c46f091c_0420_4c1a_af30_0a2c8ebcf7d7 rdf:type owl:Class .
### http://emmo.info/emmo#EMMO_ec7464a9_d99d_45f8_965b_4e9230ea8356
emmo:EMMO_ec7464a9_d99d_45f8_965b_4e9230ea8356 rdf:type owl:Class .
### https://bvco.ontology.link/BVCO_029dc42b_7b6e_4cd5_9543_d58078123851
:BVCO_029dc42b_7b6e_4cd5_9543_d58078123851 rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_49fc895e_d6cf_4f12_bcc6_2ad94b75c212 ;
skos:prefLabel "Inserting"@en .
### https://bvco.ontology.link/BVCO_06b0e68d_ca02_4aec_943e_4e8d8eebf284
:BVCO_06b0e68d_ca02_4aec_943e_4e8d8eebf284 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_82f0ea86_5e2b_47c0_977a_d610c6f1f836 ;
skos:prefLabel "FabricatedElectrodeSeparatorSequence"@en .
### https://bvco.ontology.link/BVCO_08b57e25_bc61_436e_80d7_65214836a793
:BVCO_08b57e25_bc61_436e_80d7_65214836a793 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_38ce2e41_8b62_4851_a5ac_47d77a6ffa3c ;
skos:prefLabel "DriedSeparatedFabricatedElectrode"@en .
### https://bvco.ontology.link/BVCO_099dabbe_c0d6_4695_ab15_996b68eb5d40
:BVCO_099dabbe_c0d6_4695_ab15_996b68eb5d40 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_06b0e68d_ca02_4aec_943e_4e8d8eebf284 ;
skos:prefLabel "FabricatedElectrodeJellyRole"@en .
### https://bvco.ontology.link/BVCO_0a4c9fc1_e5c4_4e15_9d14_9e64092b2bb6
:BVCO_0a4c9fc1_e5c4_4e15_9d14_9e64092b2bb6 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_5ef5f201_0347_47f5_af45_d3cace7dc960 ,
:BVCO_6adf6955_529b_4ac4_889d_e2aaf56a49a1 ,
:BVCO_f4334e05_4b43_4aa5_a01e_f829c32aca16 ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_f68030be_94b8_4c61_a161_886468558054 ;
owl:someValuesFrom :BVCO_1c325086_be16_4556_9d2d_222cccf6a4b7
] ;
skos:prefLabel "PositiveElectrode"@en .
### https://bvco.ontology.link/BVCO_0acc27ab_efd2_4b05_aa4b_6a7182fb4bab
:BVCO_0acc27ab_efd2_4b05_aa4b_6a7182fb4bab rdf:type owl:Class ;
rdfs:subClassOf emmo:EMMO_77e2e601_5ecb_450b_b563_92f096997832 ;
skos:prefLabel "DrySlurryComponentMixture"@en .
### https://bvco.ontology.link/BVCO_0c42fa38_503b_4fe4_90a6_c27730627514
:BVCO_0c42fa38_503b_4fe4_90a6_c27730627514 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_ab9ef8ba_1f85_4a19_97e9_4993c9c8fb8f ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_c85544eb_811c_4a40_b41e_46c031c67300
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom [ rdf:type owl:Class ;
owl:unionOf ( :BVCO_80fea7df_9935_46de_a679_e488508d2359
:BVCO_97254f0b_3e71_4721_98f0_a898d0110627
)
]
] ;
skos:prefLabel "PouchCellWetting"@en .
### https://bvco.ontology.link/BVCO_0effce43_6179_49f6_903f_b3e27091b6d0
:BVCO_0effce43_6179_49f6_903f_b3e27091b6d0 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_1ebe8a18_c6bb_43ff_a7e5_776901907a53 ,
:BVCO_dcd25690_db51_4280_a94d_49737ab415b7 ;
skos:prefLabel "LithiumConversionElectrode"@en .
### https://bvco.ontology.link/BVCO_10115efe_b5d5_4253_8b3e_aacb106681c5
:BVCO_10115efe_b5d5_4253_8b3e_aacb106681c5 rdf:type owl:Class ;
owl:equivalentClass :BVCO_9ad306d7_71da_48ec_861d_6399b5912e98 ;
rdfs:subClassOf :BVCO_55eb9c4b_3fe3_413c_bf18_3cf3b50281f7 ;
skos:prefLabel "WettedElectrochemicalCell"@en .
### https://bvco.ontology.link/BVCO_115edbed_3858_426d_86c5_df8a6528b53b
:BVCO_115edbed_3858_426d_86c5_df8a6528b53b rdf:type owl:Class ;
rdfs:subClassOf :BVCO_1c38f515_5dfc_47f0_9862_5c10b3da67ae ;
skos:prefLabel "DryFabricatedPouchCell"@en .
### https://bvco.ontology.link/BVCO_12664712_cdf1_43c9_b102_1691db16d37f
:BVCO_12664712_cdf1_43c9_b102_1691db16d37f rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_0658b91d_0b48_4302_9065_e3b5fad4815e ;
skos:prefLabel "SpentElectricBattery"@en .
### https://bvco.ontology.link/BVCO_147fdb7c_40f5_4cd9_a6dc_f9c6dc39b378
:BVCO_147fdb7c_40f5_4cd9_a6dc_f9c6dc39b378 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_6f401a5b_1fff_4f68_9c63_9bbf536a545c ;
skos:prefLabel "PartiallyFilledPrismaticCell"@en .
### https://bvco.ontology.link/BVCO_14f7394f_0474_44fe_96eb_426e9b94a279
:BVCO_14f7394f_0474_44fe_96eb_426e9b94a279 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_63bfada0_9872_4d1c_a005_34adfed849c3 ;
skos:prefLabel "Graphite"@en .
### https://bvco.ontology.link/BVCO_159d475f_97dc_4010_91b5_fcc94d243ae0
:BVCO_159d475f_97dc_4010_91b5_fcc94d243ae0 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_f0e29a4f_d749_436c_9a89_ae0ca1cd305c ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_4355a450_19c9_4464_a06a_b2e57cb16499
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_27928bfa_8eb1_49e8_a892_607c5a5af58b
] ;
skos:prefLabel "PrismaticCellFormation"@en .
### https://bvco.ontology.link/BVCO_167eface_1002_4e14_ab77_c44829ea7e09
:BVCO_167eface_1002_4e14_ab77_c44829ea7e09 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_1c38f515_5dfc_47f0_9862_5c10b3da67ae ;
skos:prefLabel "DryFabricatedCylindricalCell"@en .
### https://bvco.ontology.link/BVCO_17c60644_b415_4fad_b4da_ef68137e4766
:BVCO_17c60644_b415_4fad_b4da_ef68137e4766 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_a4495da3_5a64_47d3_9979_d7beda4500cd ;
skos:prefLabel "NMCCell"@en .
### https://bvco.ontology.link/BVCO_17fa4ff1_d171_47de_9f34_9583e4aeb393
:BVCO_17fa4ff1_d171_47de_9f34_9583e4aeb393 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_08b57e25_bc61_436e_80d7_65214836a793 ;
skos:prefLabel "DriedSlittedFabricatedElectrodeRole"@en .
### https://bvco.ontology.link/BVCO_184130ab_c634_4136_b60a_3c118c7d1937
:BVCO_184130ab_c634_4136_b60a_3c118c7d1937 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_3cf2ce1c_b1d5_46a4_8363_bc2f595f228e ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_73c0acfa_1166_4fc0_acaf_0ec03d38f4b6
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_c85544eb_811c_4a40_b41e_46c031c67300
] ;
skos:prefLabel "PouchCellSealing"@en .
### https://bvco.ontology.link/BVCO_18cd985e_49c4_4dd5_996a_73b730fcccda
:BVCO_18cd985e_49c4_4dd5_996a_73b730fcccda rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_aa217fba_9840_4176_98a6_e247cf0181c8 ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_3f685553_cf80_4b4f_ba3b_c2552c570a81
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_c38fc347_09ff_45f5_8b0a_fbd6f3871bbc
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_63303a9a_6f77_46d5_8dcc_84712e29c090
] ;
skos:prefLabel "FabricatedElectrodeSeparation"@en .
### https://bvco.ontology.link/BVCO_198e1caf_0784_4ecb_a671_75915272b686
:BVCO_198e1caf_0784_4ecb_a671_75915272b686 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_b0d50501_459a_4207_99e6_7590c576668b ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_758f4eb2_30c4_47ce_9b96_f3e4df7dc896
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_788207c8_d919_4333_ac93_54942377cec3
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_79665944_da42_433b_9988_9b309b8f0f4e
] ;
skos:prefLabel "PrismaticCellInserting"@en .
### https://bvco.ontology.link/BVCO_1a0c38ce_2cc2_4245_898c_89df57e30fd6
:BVCO_1a0c38ce_2cc2_4245_898c_89df57e30fd6 rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_9471e306_144f_4310_82bf_1415d23326e0 ;
skos:prefLabel "RefinedBatteryMaterial"@en .
### https://bvco.ontology.link/BVCO_1a46d865_0eae_45e9_bc45_379c0aec5af6
:BVCO_1a46d865_0eae_45e9_bc45_379c0aec5af6 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_83388326_362e_407a_92db_3235b35844f1 ;
skos:prefLabel "GalvanicCellChargingCathode"@en .
### https://bvco.ontology.link/BVCO_1b94c675_21bf_4c48_a042_a9fd2d379e78
:BVCO_1b94c675_21bf_4c48_a042_a9fd2d379e78 rdf:type owl:Class ;
rdfs:subClassOf emmo:EMMO_71d1c8f0_c6e3_44b5_a4b6_1b74ff35698a ;
skos:prefLabel "Wetting"@en .
### https://bvco.ontology.link/BVCO_1ba6fc78_d12b_475d_b3ff_0220fe614ed9
:BVCO_1ba6fc78_d12b_475d_b3ff_0220fe614ed9 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_e180eaa0_f66f_4b49_8370_ef574d5a77dc ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_813609a2_35e3_4d85_b902_5f1aebb97ab0
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_925d92f8_5a11_4434_a9ab_a2541ca34d53
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_adeeea10_13a2_48b1_93f5_e54290d73e32
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_962e42e6_099d_4ae7_8a95_7ad5cf25bf4a
] ;
skos:prefLabel "BatteryModuleManufacturing"@en .
### https://bvco.ontology.link/BVCO_1c325086_be16_4556_9d2d_222cccf6a4b7
:BVCO_1c325086_be16_4556_9d2d_222cccf6a4b7 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_f25eeb2f_54b0_4c4a_ada8_c7e53b11d49e ;
skos:prefLabel "PositiveActiveMaterial"@en .
### https://bvco.ontology.link/BVCO_1c38f515_5dfc_47f0_9862_5c10b3da67ae
:BVCO_1c38f515_5dfc_47f0_9862_5c10b3da67ae rdf:type owl:Class ;
rdfs:subClassOf :BVCO_adeeea10_13a2_48b1_93f5_e54290d73e32 ;
skos:prefLabel "DryFabricatedElectrochemicalCell"@en .
### https://bvco.ontology.link/BVCO_1d7cc67a_a753_4242_ac87_de846b4132b8
:BVCO_1d7cc67a_a753_4242_ac87_de846b4132b8 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_29fd86b7_3977_4fd2_ae8a_9a9208578e0b ,
gpo:GPO_2c787420_067a_483a_b565_a9a55898210e ;
skos:prefLabel "ManganeseOre"@en .
### https://bvco.ontology.link/BVCO_1ebe8a18_c6bb_43ff_a7e5_776901907a53
:BVCO_1ebe8a18_c6bb_43ff_a7e5_776901907a53 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_38ce2e41_8b62_4851_a5ac_47d77a6ffa3c ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_0c25c011_9320_461f_bc23_6e9691827305 ;
owl:someValuesFrom :BVCO_a146e146_517a_4fa6_be3b_dfa2cf285156
] ;
skos:prefLabel "FabricatedConversionElectrode"@en .
### https://bvco.ontology.link/BVCO_1f4d6016_890f_4e51_a2d0_1a2d0978f689
:BVCO_1f4d6016_890f_4e51_a2d0_1a2d0978f689 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_82f0ea86_5e2b_47c0_977a_d610c6f1f836 ;
skos:prefLabel "FabricatedCurrentCollector"@en .
### https://bvco.ontology.link/BVCO_1f5c3335_565a_4feb_b0aa_024962850b5d
:BVCO_1f5c3335_565a_4feb_b0aa_024962850b5d rdf:type owl:Class ;
rdfs:subClassOf :BVCO_adeeea10_13a2_48b1_93f5_e54290d73e32 ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f ;
owl:someValuesFrom :BVCO_1f4d6016_890f_4e51_a2d0_1a2d0978f689
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f ;
owl:someValuesFrom :BVCO_1f9ffbd0_9c82_4a65_9f57_bc88712fa0fe
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f ;
owl:someValuesFrom :BVCO_38ce2e41_8b62_4851_a5ac_47d77a6ffa3c
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_0c25c011_9320_461f_bc23_6e9691827305 ;
owl:someValuesFrom <http://emmo.info/electrochemistry#electrochemistry_9da958fc_f76d_4654_8a78_99b5f98c118c>
] ;
skos:prefLabel "FabricatedElectrochemicalHalfCell"@en .
### https://bvco.ontology.link/BVCO_1f9ffbd0_9c82_4a65_9f57_bc88712fa0fe
:BVCO_1f9ffbd0_9c82_4a65_9f57_bc88712fa0fe rdf:type owl:Class ;
rdfs:subClassOf :BVCO_82f0ea86_5e2b_47c0_977a_d610c6f1f836 ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_0c25c011_9320_461f_bc23_6e9691827305 ;
owl:someValuesFrom <http://emmo.info/electrochemistry#electrochemistry_fb0d9eef_92af_4628_8814_e065ca255d59>
] ;
skos:prefLabel "FabricatedElectrolyte"@en .
### https://bvco.ontology.link/BVCO_1fb417ef_3f78_4c72_a51e_c0657b2a870e
:BVCO_1fb417ef_3f78_4c72_a51e_c0657b2a870e rdf:type owl:Class ;
rdfs:subClassOf emmo:EMMO_494b372c_cfdf_47d3_a4de_5e037c540de8 ;
skos:prefLabel "CurrentSource"@en .
### https://bvco.ontology.link/BVCO_23545956_695c_41f5_9923_16472f9a299f
:BVCO_23545956_695c_41f5_9923_16472f9a299f rdf:type owl:Class ;
rdfs:subClassOf :BVCO_f0e29a4f_d749_436c_9a89_ae0ca1cd305c ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_80fea7df_9935_46de_a679_e488508d2359
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_86a91ae4_95fd_45ae_97af_6af51f56b0d1
] ;
skos:prefLabel "PouchCellFormation"@en .
### https://bvco.ontology.link/BVCO_2748579f_0cb7_42b5_988b_3b8719856a20
:BVCO_2748579f_0cb7_42b5_988b_3b8719856a20 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_d3462dc8_ec3c_4c60_b965_cb147b55a419 ;
skos:prefLabel "SiliciumOreDeposit"@en .
### https://bvco.ontology.link/BVCO_27928bfa_8eb1_49e8_a892_607c5a5af58b
:BVCO_27928bfa_8eb1_49e8_a892_607c5a5af58b rdf:type owl:Class ;
rdfs:subClassOf :BVCO_82e61ef5_13ce_4c7d_9e66_9bfe740eb82d ;
skos:prefLabel "FormedPrismaticCell"@en .
### https://bvco.ontology.link/BVCO_27ff9430_f45d_44fc_83fd_b9930bd2dd51
:BVCO_27ff9430_f45d_44fc_83fd_b9930bd2dd51 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_925d92f8_5a11_4434_a9ab_a2541ca34d53 ;
skos:prefLabel "CylindricalCase"@en .
### https://bvco.ontology.link/BVCO_28f1502b_14d2_436d_a294_bf372a13a39f
:BVCO_28f1502b_14d2_436d_a294_bf372a13a39f rdf:type owl:Class ;
rdfs:subClassOf :BVCO_29fd86b7_3977_4fd2_ae8a_9a9208578e0b ,
gpo:GPO_2c787420_067a_483a_b565_a9a55898210e ;
skos:prefLabel "IronOre"@en .
### https://bvco.ontology.link/BVCO_29fd86b7_3977_4fd2_ae8a_9a9208578e0b
:BVCO_29fd86b7_3977_4fd2_ae8a_9a9208578e0b rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_23f6e14f_b0fa_4140_b915_767131ac9b7f ;
skos:prefLabel "BatteryRawMaterial"@en .
### https://bvco.ontology.link/BVCO_2ba21032_cd96_4cb1_9b7e_c009532ccd37
:BVCO_2ba21032_cd96_4cb1_9b7e_c009532ccd37 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_a7741503_f235_459e_954b_2c8317567bd4 ;
skos:prefLabel "GalvanicCellDischargingAnode"@en .
### https://bvco.ontology.link/BVCO_330f8958_ad34_41e7_b119_25d03b1e0761
:BVCO_330f8958_ad34_41e7_b119_25d03b1e0761 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_38ce2e41_8b62_4851_a5ac_47d77a6ffa3c ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_0c25c011_9320_461f_bc23_6e9691827305 ;
owl:someValuesFrom <http://emmo.info/electrochemistry#electrochemistry_757eae08_4d43_42d4_8b4e_8a0bfd2f9a1c>
] ;
skos:prefLabel "FabricatedIntercalationElectrode"@en .
### https://bvco.ontology.link/BVCO_34c7d2be_7019_4133_afa5_c303a15b00f1
:BVCO_34c7d2be_7019_4133_afa5_c303a15b00f1 rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_ce7db854_9e14_4339_9e71_a8d4ab8f6331 ;
skos:prefLabel "SlotDieCoating"@en .
### https://bvco.ontology.link/BVCO_37c4d040_a448_44db_aef3_a21da971d786
:BVCO_37c4d040_a448_44db_aef3_a21da971d786 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_adeeea10_13a2_48b1_93f5_e54290d73e32 ;
skos:prefLabel "PartiallyWettedFabricatedElectrochemicalCell"@en .
### https://bvco.ontology.link/BVCO_37d28c26_8390_4569_a35f_3d9cc7f2e6a6
:BVCO_37d28c26_8390_4569_a35f_3d9cc7f2e6a6 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_e17ca59d_f674_472b_88c7_2aeef210a038 ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_167eface_1002_4e14_ab77_c44829ea7e09
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_1f9ffbd0_9c82_4a65_9f57_bc88712fa0fe
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_6e9f21a4_9e2c_4963_97a6_9b7bb8ccacba
] ;
skos:prefLabel "CylindricalCellElectrolyteFilling"@en .
### https://bvco.ontology.link/BVCO_38ce2e41_8b62_4851_a5ac_47d77a6ffa3c
:BVCO_38ce2e41_8b62_4851_a5ac_47d77a6ffa3c rdf:type owl:Class ;
rdfs:subClassOf :BVCO_82f0ea86_5e2b_47c0_977a_d610c6f1f836 ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_f68030be_94b8_4c61_a161_886468558054 ;
owl:someValuesFrom :BVCO_f25eeb2f_54b0_4c4a_ada8_c7e53b11d49e
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_0c25c011_9320_461f_bc23_6e9691827305 ;
owl:someValuesFrom <http://emmo.info/electrochemistry#electrochemistry_0f007072-a8dd-4798-b865-1bf9363be627>
] ;
skos:prefLabel "FabricatedElectrode"@en .
### https://bvco.ontology.link/BVCO_38eda6ec_6e3d_4a7e_91fc_54c8beb57374
:BVCO_38eda6ec_6e3d_4a7e_91fc_54c8beb57374 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_6fab2095_344d_4c40_b53e_c0725b587583 ,
gpo:GPO_5f02dbb0_2803_4aaa_9104_ba39f17a4c8d ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_42516123_e970_4fc5_b401_c0b46f4fcd0d
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_dbda1d6a_b1f5_4c5a_9f8d_8c44011b5648
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_df91638a_752b_4416_a8aa_62d0be66e4c6
] ;
skos:prefLabel "FabricatedElectrodeZFolding"@en .
### https://bvco.ontology.link/BVCO_3a7bf591_548a_42d3_bcae_59a6a672b9c8
:BVCO_3a7bf591_548a_42d3_bcae_59a6a672b9c8 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_63bfada0_9872_4d1c_a005_34adfed849c3 ;
skos:prefLabel "Silicon"@en .
### https://bvco.ontology.link/BVCO_3c2c4024_1ca4_4507_8359_4856aec6eb14
:BVCO_3c2c4024_1ca4_4507_8359_4856aec6eb14 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_894e3b08_f6eb_47a5_a9da_1b3bebd24320 ;
skos:prefLabel "SealedCylindricalCell"@en .
### https://bvco.ontology.link/BVCO_3cdb3b65_3628_4a7b_84ec_bec843612cf4
:BVCO_3cdb3b65_3628_4a7b_84ec_bec843612cf4 rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_cc903d23_0d06_49f8_81e4_b7511d2587e9 ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f ;
owl:someValuesFrom :BVCO_95e958ca_b2f4_4a5a_a6ba_9491e7b97c8a
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_12664712_cdf1_43c9_b102_1691db16d37f
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_1a0c38ce_2cc2_4245_898c_89df57e30fd6
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_82f0ea86_5e2b_47c0_977a_d610c6f1f836
] ;
skos:prefLabel "BatteryRecycling"@en .
### https://bvco.ontology.link/BVCO_3cf2ce1c_b1d5_46a4_8363_bc2f595f228e
:BVCO_3cf2ce1c_b1d5_46a4_8363_bc2f595f228e rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_65e00d30_9d66_4018_a7b9_a671729a1794 ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_e17ca59d_f674_472b_88c7_2aeef210a038
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_576e90c7_c9d5_44e6_b72c_8ab4a5cf657a
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_894e3b08_f6eb_47a5_a9da_1b3bebd24320
] ;
skos:prefLabel "FabricatedElectrochemicalCellSealing"@en .
### https://bvco.ontology.link/BVCO_3dd86b1f_2c1d_4267_9d48_12d868497179
:BVCO_3dd86b1f_2c1d_4267_9d48_12d868497179 rdf:type owl:Class ;
owl:equivalentClass :BVCO_d8492642_3761_4d84_b4d9_cb34ad7d368f ;
rdfs:subClassOf :BVCO_17c60644_b415_4fad_b4da_ef68137e4766 ;
skos:prefLabel "NMC333Cell"@en .
### https://bvco.ontology.link/BVCO_3f685553_cf80_4b4f_ba3b_c2552c570a81
:BVCO_3f685553_cf80_4b4f_ba3b_c2552c570a81 rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_f846eaba_e75a_49df_b71a_5f769e6a7e7e ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_e15fd741_bb2f_4da4_9d81_1c54231fa9a7
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_f4b3d48a_90c3_4986_8b29_2c6e20b690d1
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_c38fc347_09ff_45f5_8b0a_fbd6f3871bbc
] ;
skos:prefLabel "FabricatedElectrodeCalendering"@en .
### https://bvco.ontology.link/BVCO_3f79367b_9fb5_4d39_887d_7a99667547bb
:BVCO_3f79367b_9fb5_4d39_887d_7a99667547bb rdf:type owl:Class ;
rdfs:subClassOf :BVCO_c30690e7_35fe_4b4f_a0d2_02a2f1eac6f0 ;
skos:prefLabel "LithiumMetalElectrode"@en .
### https://bvco.ontology.link/BVCO_40941813_6ae7_4e59_a18b_12ff6f3319c3
:BVCO_40941813_6ae7_4e59_a18b_12ff6f3319c3 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_55eb9c4b_3fe3_413c_bf18_3cf3b50281f7 ;
skos:prefLabel "DegassedElectrochemicalCell"@en .
### https://bvco.ontology.link/BVCO_42516123_e970_4fc5_b401_c0b46f4fcd0d
:BVCO_42516123_e970_4fc5_b401_c0b46f4fcd0d rdf:type owl:Class ;
rdfs:subClassOf :BVCO_a2b509d5_32a0_404b_80b6_3f5ec39b851f ;
skos:prefLabel "FabricatedSeparatorRole"@en .
### https://bvco.ontology.link/BVCO_432ec5aa_575a_403c_961d_65499fb65358
:BVCO_432ec5aa_575a_403c_961d_65499fb65358 rdf:type owl:Class ;
rdfs:subClassOf emmo:EMMO_4207e895_8b83_4318_996a_72cfb32acd94 ;
skos:prefLabel "Binder"@en .
### https://bvco.ontology.link/BVCO_4355a450_19c9_4464_a06a_b2e57cb16499
:BVCO_4355a450_19c9_4464_a06a_b2e57cb16499 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_9ad306d7_71da_48ec_861d_6399b5912e98 ;
skos:prefLabel "WettedPrismaticCell"@en .
### https://bvco.ontology.link/BVCO_43b01f1f_f3fb_4fac_a69a_d9188fdad08c
:BVCO_43b01f1f_f3fb_4fac_a69a_d9188fdad08c rdf:type owl:Class ;
rdfs:subClassOf :BVCO_dd4dec74_28b4_4929_b442_ee4d962a3d01 ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_86a91ae4_95fd_45ae_97af_6af51f56b0d1
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_7426f154_e1a2_4289_ae40_a7bc0ee89abd
] ;
skos:prefLabel "PouchCellDegassing"@en .
### https://bvco.ontology.link/BVCO_44130436_88b5_45d1_bf19_a76cf94cee95
:BVCO_44130436_88b5_45d1_bf19_a76cf94cee95 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_813609a2_35e3_4d85_b902_5f1aebb97ab0 ;
skos:prefLabel "LiquidElectrolyteCellProduction"@de .
### https://bvco.ontology.link/BVCO_454eb9d2_d541_4bbe_932f_27a77dc7c370
:BVCO_454eb9d2_d541_4bbe_932f_27a77dc7c370 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_d3462dc8_ec3c_4c60_b965_cb147b55a419 ;
skos:prefLabel "LithiumOreDeposit"@en .
### https://bvco.ontology.link/BVCO_45ddffbd_d4fa_496d_a4d8_5521194b5674
:BVCO_45ddffbd_d4fa_496d_a4d8_5521194b5674 rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_2680e8c9_b5d0_4d50_9a33_52e4270669d8 ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f ;
owl:someValuesFrom :BVCO_925d92f8_5a11_4434_a9ab_a2541ca34d53
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f ;
owl:someValuesFrom :BVCO_adeeea10_13a2_48b1_93f5_e54290d73e32
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_0c25c011_9320_461f_bc23_6e9691827305 ;
owl:someValuesFrom <http://emmo.info/battery#battery_74ed2670_657d_4f0b_b0a6_3f13bc2e9c17>
] ;
skos:altLabel "FabricatedElectricBattery" ;
skos:prefLabel "FabricatedBattery"@en .
### https://bvco.ontology.link/BVCO_460ffa05_c39d_4059_98b6_babf112f152b
:BVCO_460ffa05_c39d_4059_98b6_babf112f152b rdf:type owl:Class ;
rdfs:subClassOf :BVCO_17c60644_b415_4fad_b4da_ef68137e4766 ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f ;
owl:someValuesFrom :BVCO_4d1fb581_9d54_4014_891f_9f10d8a24475
] ;
skos:prefLabel "NMC611Cell"@en .
### https://bvco.ontology.link/BVCO_4a2286b3_d823_4705_b9e4_302b85ab6657
:BVCO_4a2286b3_d823_4705_b9e4_302b85ab6657 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_e17ca59d_f674_472b_88c7_2aeef210a038 ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_4c35ddd6_9ec7_463a_be42_e734b496fd9a
] ;
owl:deprecated "true"^^xsd:boolean ;
skos:prefLabel "PouchCellFillingOld"@en .
### https://bvco.ontology.link/BVCO_4c35ddd6_9ec7_463a_be42_e734b496fd9a
:BVCO_4c35ddd6_9ec7_463a_be42_e734b496fd9a rdf:type owl:Class ;
rdfs:subClassOf :BVCO_643f0b32_2aca_4efa_9f1c_8f802cbc7228 ;
skos:prefLabel "SealedDryFabricatedElectrodeStack"@en .
### https://bvco.ontology.link/BVCO_4d1fb581_9d54_4014_891f_9f10d8a24475
:BVCO_4d1fb581_9d54_4014_891f_9f10d8a24475 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_578186e7_4fd2_4c66_bf80_53146fa97f49 ;
skos:prefLabel "NMC611"@en .
### https://bvco.ontology.link/BVCO_52ab68fa_78e8_4947_92d9_106eff49940b
:BVCO_52ab68fa_78e8_4947_92d9_106eff49940b rdf:type owl:Class ;
rdfs:subClassOf :BVCO_18cd985e_49c4_4dd5_996a_73b730fcccda ,
gpo:GPO_13cf7fc2_c0d4_4060_97c8_93e929870f5b ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_807a8411_ac66_45ee_80fc_3d873111cd99
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_a4f4339f_a17c_4531_9c71_e3a4e0bdcdb2
] ;
skos:prefLabel "PunchingFabricatedElectrodeSeparation"@en .
### https://bvco.ontology.link/BVCO_52d429c7_bf86_451c_a4c9_6ed5eaf79548
:BVCO_52d429c7_bf86_451c_a4c9_6ed5eaf79548 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_61f4fd10_c2d0_493d_91b9_4acee52535a1 ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Extruders are used for mixing of powders, followed by an extrusion onto a substrate, e.g. dry processing of lithium-ion battery active materials to coat current collectors"@en ;
skos:prefLabel "DryExtruderMixing"@en .
### https://bvco.ontology.link/BVCO_5528bfb0_a7ad_48da_8417_9e43b0164930
:BVCO_5528bfb0_a7ad_48da_8417_9e43b0164930 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_86f12718_7b8a_43a0_af61_47e10f80bc82 ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_925d92f8_5a11_4434_a9ab_a2541ca34d53
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_9c661622_6258_46bd_8f53_85d531a39f0b
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_1c38f515_5dfc_47f0_9862_5c10b3da67ae
] ;
skos:prefLabel "FabricatedElectrodeStackPackaging"@en .
### https://bvco.ontology.link/BVCO_55eb9c4b_3fe3_413c_bf18_3cf3b50281f7
:BVCO_55eb9c4b_3fe3_413c_bf18_3cf3b50281f7 rdf:type owl:Class ;
rdfs:subClassOf <http://emmo.info/electrochemistry#electrochemistry_6f2c88c9_5c04_4953_a298_032cc3ab9b77> ,
:BVCO_adeeea10_13a2_48b1_93f5_e54290d73e32 ;
skos:prefLabel "CompletedElectrochemicalCell"@en .
### https://bvco.ontology.link/BVCO_56eaa4c7_8d17_4215_9e93_ac3f7da036de
:BVCO_56eaa4c7_8d17_4215_9e93_ac3f7da036de rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_f97d2d4d_86db_4fd5_9e35_5bb363cd91c9 ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_e180eaa0_f66f_4b49_8370_ef574d5a77dc
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_45ddffbd_d4fa_496d_a4d8_5521194b5674
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_12664712_cdf1_43c9_b102_1691db16d37f
] ;
skos:prefLabel "BatteryApplication"@en .
### https://bvco.ontology.link/BVCO_576e90c7_c9d5_44e6_b72c_8ab4a5cf657a
:BVCO_576e90c7_c9d5_44e6_b72c_8ab4a5cf657a rdf:type owl:Class ;
owl:equivalentClass :BVCO_787f689a_f40e_40cf_b368_49cab6f0a69f ;
rdfs:subClassOf :BVCO_adeeea10_13a2_48b1_93f5_e54290d73e32 ;
skos:prefLabel "FilledFabricatedElectrochemicalCell"@en .
### https://bvco.ontology.link/BVCO_57724041_c09d_4c39_ae0a_3f3ba594d8d6
:BVCO_57724041_c09d_4c39_ae0a_3f3ba594d8d6 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_a796baaa_dffa_4c6d_8526_ae6e9114b30c ;
skos:prefLabel "BatteryPositiveElectrodeSlurry"@en .
### https://bvco.ontology.link/BVCO_578186e7_4fd2_4c66_bf80_53146fa97f49
:BVCO_578186e7_4fd2_4c66_bf80_53146fa97f49 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_1c325086_be16_4556_9d2d_222cccf6a4b7 ;
skos:prefLabel "NMC"@en .
### https://bvco.ontology.link/BVCO_58431cb6_463b_4924_af05_97de2af5f415
:BVCO_58431cb6_463b_4924_af05_97de2af5f415 rdf:type owl:Class ;
rdfs:subClassOf emmo:EMMO_2565210a_bbcc_4c00_a122_6a608faa355b ;
skos:prefLabel "ZFolder"@en .
### https://bvco.ontology.link/BVCO_5c7a41ee_0947_4210_9994_17fc9695b3d1
:BVCO_5c7a41ee_0947_4210_9994_17fc9695b3d1 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_45ddffbd_d4fa_496d_a4d8_5521194b5674 ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f ;
owl:someValuesFrom :BVCO_b8a4a9ea_b171_468d_8c91_fdd865610c09
] ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f ;
owl:someValuesFrom :BVCO_c3403541_0fb7_4a2b_b432_3860bc89848a
] ;
skos:prefLabel "BatterySystem"@en .
### https://bvco.ontology.link/BVCO_5cc12216_ca48_4f47_9f49_ecedc79e91a8
:BVCO_5cc12216_ca48_4f47_9f49_ecedc79e91a8 rdf:type owl:Class ;
rdfs:subClassOf emmo:EMMO_7509da43_56b1_4d7f_887a_65d1663df4ba ;
skos:prefLabel "Solvent"@en .
### https://bvco.ontology.link/BVCO_5ea5e237_f1f2_4051_b88c_05063e1b8214
:BVCO_5ea5e237_f1f2_4051_b88c_05063e1b8214 rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_e6b5562d_14d5_4ad5_8079_7303b490e0c9 ;
skos:prefLabel "FabricatedElectrodeStackWrapping"@en .
### https://bvco.ontology.link/BVCO_5ef5f201_0347_47f5_af45_d3cace7dc960
:BVCO_5ef5f201_0347_47f5_af45_d3cace7dc960 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_a7741503_f235_459e_954b_2c8317567bd4 ;
skos:prefLabel "GalvanicCellChargingAnode"@en .
### https://bvco.ontology.link/BVCO_6034399e_63ab_41c2_9101_1d5883b384b3
:BVCO_6034399e_63ab_41c2_9101_1d5883b384b3 rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_a1839bf6_9b67_48ca_a5a4_069b6e7fc0e9 ;
skos:prefLabel "ChargingTreatment"@en .
### https://bvco.ontology.link/BVCO_60aef9bf_772f_4355_9f2f_d58c296efe03
:BVCO_60aef9bf_772f_4355_9f2f_d58c296efe03 rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_ee89d1c9_bd1a_452d_bcf7_cd583af0369d ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_389686f5_86d8_4e97_ba71_0537bedf0f38 ;
owl:someValuesFrom :BVCO_bcd30e45_3d75_43b1_a119_6a4828555523
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_0acc27ab_efd2_4b05_aa4b_6a7182fb4bab
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_703ec528_ea40_486e_9924_b911782b1a75 ;
owl:someValuesFrom :BVCO_5cc12216_ca48_4f47_9f49_ecedc79e91a8
] ,
[ rdf:type owl:Restriction ;
owl:onProperty gpo:GPO_8c869b47_a258_43b9_9c75_4285a80a1dfb ;
owl:someValuesFrom :BVCO_a796baaa_dffa_4c6d_8526_ae6e9114b30c
] ;
skos:prefLabel "SlurryComponentMixing"@en .
### https://bvco.ontology.link/BVCO_60bee84b_4501_4c3e_ad19_692f52080a46
:BVCO_60bee84b_4501_4c3e_ad19_692f52080a46 rdf:type owl:Class ;
rdfs:subClassOf :BVCO_17c60644_b415_4fad_b4da_ef68137e4766 ,
[ rdf:type owl:Restriction ;
owl:onProperty emmo:EMMO_17e27c22_37e1_468c_9dd7_95e137f73e7f ;
owl:someValuesFrom :BVCO_f519aa12_2f6d_4d70_86ec_fb769f2a31e3
] ;
skos:prefLabel "NMC622Cell"@en .
### https://bvco.ontology.link/BVCO_61535c53_3faf_43b6_a379_ebcced2392af
:BVCO_61535c53_3faf_43b6_a379_ebcced2392af rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_ee89d1c9_bd1a_452d_bcf7_cd583af0369d ;
emmo:EMMO_967080e5_2f42_4eb2_a3a9_c58143e835f9 "Extruders are used for mixing of powders and solvents, followed by an extrusion onto a substrate, e.g., processing of lithium-ion battery active materials to coat current collectors"@en ;
skos:prefLabel "LiquidSolidExtruderMixing"@en .
### https://bvco.ontology.link/BVCO_61f4fd10_c2d0_493d_91b9_4acee52535a1
:BVCO_61f4fd10_c2d0_493d_91b9_4acee52535a1 rdf:type owl:Class ;
rdfs:subClassOf gpo:GPO_45b3677d_f436_4cfd_aa55_3ae5eab2e232 ;
skos:prefLabel "DryMixing"@en .