forked from nfdi4cat/CoreMeta4Cat
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCatalysisDataset-32x1-99x6.json
More file actions
1182 lines (1182 loc) · 45.4 KB
/
Copy pathCatalysisDataset-32x1-99x6.json
File metadata and controls
1182 lines (1182 loc) · 45.4 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
{
"id": "hdl:21.11165/4cat/32x1-99x6",
"title": [
"Support Engineering with Phosphorus: Tuning the Palladium-Catalyzed Selective Hydrogenation of α,β-Unsaturated Aldehydes"
],
"description": [
"Catalyst characterization (BET, ICP-AES, PXRD, DRIFT, IR) and catalytic testing data for a series of Pd/P catalysts (nominal 2 wt% Pd, 0-5 wt% P) on Al2O3 and SiO2 supports, investigating how phosphorus modification of the support tunes the Pd-catalyzed selective hydrogenation of cinnamyl alcohol (CAL) and citral. Catalytic performance was screened via Central Composite Design (Al2O3/CAL, 27 runs) and full-factorial designs (SiO2/CAL, Al2O3/citral, SiO2/citral; 9 runs each) varying temperature (30-70 C), pressure (1-9 bar), phosphorus loading, and reaction time. TEM is mentioned in the original repository description but no TEM data files are included in the deposited dataset."
],
"rdf_type": {
"id": "VOC4CAT:0007001",
"title": "heterogeneous catalysis"
},
"keyword": [
"Chemistry",
"Engineering",
"Catalysis",
"Heterogeneous catalysis",
"Palladium catalyst",
"Phosphorus modification",
"Selective hydrogenation",
"Cinnamyl alcohol",
"Citral"
],
"creator": [
{
"name": [
"Rang, Fabian"
]
},
{
"name": [
"Hanf, Schirin"
]
},
{
"name": [
"Holtermann, Birger"
]
},
{
"name": [
"Eggeler, Yolita"
]
},
{
"name": [
"Barth, Simon"
]
},
{
"name": [
"Grunwaldt, Jan-Dierk"
]
}
],
"publisher": {
"name": [
"NFDI4Cat Central Data Repository"
]
},
"release_date": "2026-03-11",
"dataset_distribution": [
{
"access_URL": [
{
"id": "https://hdl.handle.net/21.11165/4cat/32x1-99x6",
"title": "Repository landing page"
}
],
"description": [
"Repository landing page providing access to the characterization and catalytic testing data files."
],
"licence": {
"id": "https://creativecommons.org/licenses/by/4.0/",
"title": "CC BY 4.0"
}
}
],
"other_identifier": [
{
"notation": "https://hdl.handle.net/21.11165/4cat/32x1-99x6"
},
{
"notation": "doi:10.1021/ac0702802",
"description": "Methodology reference cited for the DRIFT pseudo-absorbance conversion (not this dataset's own publication)"
}
],
"was_generated_by": [
{
"id": "coremeta4cat:CHAR_32x1-99x6_BET",
"title": [
"BET surface area analysis (10 catalysts)"
],
"description": [
"Brunauer-Emmett-Teller specific surface area determination for all 10 Pd/P-Al2O3 and Pd/P-SiO2 catalysts (0-5 wt% nominal P loading). Surface area ranged 72-126 m2/g, generally decreasing with increasing P loading (bet_results.txt)."
],
"rdf_type": {
"id": "ENM:0000064",
"title": "BET analysis"
},
"carried_out_by": [
{
"id": "coremeta4cat:DEV_32x1-99x6_BET",
"title": "BET surface area analyser",
"description": "Instrument model not specified in the source dataset files."
}
],
"evaluated_entity": [
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_0P",
"title": "Pd/Al2O3",
"description": "Pd on Al2O3, P-free reference"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_1P",
"title": "Pd/1P/Al2O3",
"description": "Pd on Al2O3, nominal 1 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_2P",
"title": "Pd/2P/Al2O3",
"description": "Pd on Al2O3, nominal 2 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_3P",
"title": "Pd/3P/Al2O3",
"description": "Pd on Al2O3, nominal 3 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_4P",
"title": "Pd/4P/Al2O3",
"description": "Pd on Al2O3, nominal 4 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_5P",
"title": "Pd/5P/Al2O3",
"description": "Pd on Al2O3, nominal 5 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_0P",
"title": "Pd/SiO2",
"description": "Pd on SiO2, P-free reference"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_1P",
"title": "Pd/1P/SiO2",
"description": "Pd on SiO2, nominal 1 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_3P",
"title": "Pd/3P/SiO2",
"description": "Pd on SiO2, nominal 3 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_5P",
"title": "Pd/5P/SiO2",
"description": "Pd on SiO2, nominal 5 wt% P"
}
],
"realized_plan": {
"id": "coremeta4cat:CHAR_32x1-99x6_BET_method",
"title": "N2 physisorption BET method",
"description": "Standard N2 physisorption at liquid-nitrogen temperature (-196C), Brunauer-Emmett-Teller analysis. Adsorbate gas and measurement temperature not explicitly stated in bet_results.txt; assumed standard BET convention."
},
"other_identifier": [
{
"notation": "https://hdl.handle.net/21.11165/4cat/32x1-99x6"
}
],
"activity_designator": "Characterization"
},
{
"id": "coremeta4cat:CHAR_32x1-99x6_DRIFT",
"title": [
"DRIFT CO-adsorption spectroscopy (4 catalysts)"
],
"description": [
"Diffuse reflectance infrared Fourier transform spectroscopy of CO adsorbed at room temperature, for 4 catalysts (Pd/Al2O3, Pd/3P/Al2O3, Pd/SiO2, Pd/3P/SiO2). Spectra converted to pseudo-absorbance (log(1/reflectance)) per Anal. Chem. 2007, 79, 10, 3912-3918 (DOI 10.1021/ac0702802) and baseline-corrected (info_drifts.txt); OriginPro 2023 used for analysis/plotting."
],
"rdf_type": {
"id": "CHMO:0000645",
"title": "diffuse reflectance infrared Fourier transform spectroscopy"
},
"carried_out_by": [
{
"id": "coremeta4cat:DEV_32x1-99x6_DRIFT",
"title": "FTIR spectrometer with DRIFT accessory",
"description": "Instrument model not specified in the source dataset files."
}
],
"evaluated_entity": [
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_0P",
"title": "Pd/Al2O3",
"description": "Pd on Al2O3, P-free reference"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_3P",
"title": "Pd/3P/Al2O3",
"description": "Pd on Al2O3, nominal 3 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_0P",
"title": "Pd/SiO2",
"description": "Pd on SiO2, P-free reference"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_3P",
"title": "Pd/3P/SiO2",
"description": "Pd on SiO2, nominal 3 wt% P"
}
],
"realized_plan": {
"id": "coremeta4cat:CHAR_32x1-99x6_DRIFT_method",
"title": "CO-adsorption DRIFT method",
"description": "CO adsorption at room temperature; pseudo-absorbance = log(1/reflectance)."
},
"other_identifier": [
{
"notation": "https://hdl.handle.net/21.11165/4cat/32x1-99x6"
}
],
"activity_designator": "Characterization"
},
{
"id": "coremeta4cat:CHAR_32x1-99x6_ICPAES",
"title": [
"ICP-AES elemental composition analysis (8 catalysts)"
],
"description": [
"Inductively coupled plasma atomic emission spectroscopy for bulk Pd and P content of the 8 P-modified catalysts (measured Pd 1.8-2.0 wt%, P 0.8-4.8 wt%, deviating somewhat from nominal loadings; icp_results.txt). P-free reference catalysts (Pd/Al2O3, Pd/SiO2) were not analysed by ICP-AES."
],
"rdf_type": {
"id": "CHMO:0000267",
"title": "inductively coupled plasma atomic emission spectroscopy"
},
"carried_out_by": [
{
"id": "coremeta4cat:DEV_32x1-99x6_ICPAES",
"title": "ICP-AES spectrometer",
"description": "Instrument model not specified in the source dataset files."
}
],
"evaluated_entity": [
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_1P",
"title": "Pd/1P/Al2O3",
"description": "Pd on Al2O3, nominal 1 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_2P",
"title": "Pd/2P/Al2O3",
"description": "Pd on Al2O3, nominal 2 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_3P",
"title": "Pd/3P/Al2O3",
"description": "Pd on Al2O3, nominal 3 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_4P",
"title": "Pd/4P/Al2O3",
"description": "Pd on Al2O3, nominal 4 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_5P",
"title": "Pd/5P/Al2O3",
"description": "Pd on Al2O3, nominal 5 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_1P",
"title": "Pd/1P/SiO2",
"description": "Pd on SiO2, nominal 1 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_3P",
"title": "Pd/3P/SiO2",
"description": "Pd on SiO2, nominal 3 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_5P",
"title": "Pd/5P/SiO2",
"description": "Pd on SiO2, nominal 5 wt% P"
}
],
"realized_plan": {
"id": "coremeta4cat:CHAR_32x1-99x6_ICPAES_method",
"title": "ICP-AES elemental analysis method",
"description": "Elements analyzed: Pd, P. Results reported in wt% (icp_results.txt)."
},
"other_identifier": [
{
"notation": "https://hdl.handle.net/21.11165/4cat/32x1-99x6"
}
],
"activity_designator": "Characterization"
},
{
"id": "coremeta4cat:CHAR_32x1-99x6_IR",
"title": [
"Infrared spectroscopy (6 catalysts)"
],
"description": [
"Infrared spectroscopy of the 6 P-modified catalysts (1, 3, 5 wt% nominal P on Al2O3 and SiO2). Wavenumber range ~400-3599 cm-1, 3319 data points per file, pseudo-absorbance convention consistent with the DRIFT data."
],
"rdf_type": {
"id": "CHMO:0000630",
"title": "infrared spectroscopy"
},
"carried_out_by": [
{
"id": "coremeta4cat:DEV_32x1-99x6_IR",
"title": "FTIR spectrometer",
"description": "Instrument model not specified in the source dataset files."
}
],
"evaluated_entity": [
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_1P",
"title": "Pd/1P/Al2O3",
"description": "Pd on Al2O3, nominal 1 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_3P",
"title": "Pd/3P/Al2O3",
"description": "Pd on Al2O3, nominal 3 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_5P",
"title": "Pd/5P/Al2O3",
"description": "Pd on Al2O3, nominal 5 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_1P",
"title": "Pd/1P/SiO2",
"description": "Pd on SiO2, nominal 1 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_3P",
"title": "Pd/3P/SiO2",
"description": "Pd on SiO2, nominal 3 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_5P",
"title": "Pd/5P/SiO2",
"description": "Pd on SiO2, nominal 5 wt% P"
}
],
"realized_plan": {
"id": "coremeta4cat:CHAR_32x1-99x6_IR_method",
"title": "Infrared spectroscopy method",
"description": "Wavenumber range ~400-3599 cm-1; pseudo-absorbance units."
},
"other_identifier": [
{
"notation": "https://hdl.handle.net/21.11165/4cat/32x1-99x6"
}
],
"activity_designator": "Characterization"
},
{
"id": "coremeta4cat:CHAR_32x1-99x6_PXRD",
"title": [
"Powder XRD phase analysis (10 catalysts)"
],
"description": [
"Powder X-ray diffraction for phase identification of all 10 Pd/P-Al2O3 and Pd/P-SiO2 catalysts, plus a P/SiO2 support-only reference sample without Pd (file PXRD_1PSiO2.xy). Two-theta range ~2-92 degrees, step size 0.015 degrees (most files); two files (nominal 5 wt% P samples) cover a shorter range ~2-63.5 degrees."
],
"rdf_type": {
"id": "CHMO:0000158",
"title": "powder X-ray diffraction"
},
"carried_out_by": [
{
"id": "coremeta4cat:DEV_32x1-99x6_PXRD",
"title": "X-ray diffractometer",
"description": "Instrument model not specified in the source dataset files."
}
],
"evaluated_entity": [
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_0P",
"title": "Pd/Al2O3",
"description": "Pd on Al2O3, P-free reference"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_1P",
"title": "Pd/1P/Al2O3",
"description": "Pd on Al2O3, nominal 1 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_2P",
"title": "Pd/2P/Al2O3",
"description": "Pd on Al2O3, nominal 2 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_3P",
"title": "Pd/3P/Al2O3",
"description": "Pd on Al2O3, nominal 3 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_4P",
"title": "Pd/4P/Al2O3",
"description": "Pd on Al2O3, nominal 4 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_5P",
"title": "Pd/5P/Al2O3",
"description": "Pd on Al2O3, nominal 5 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_0P",
"title": "Pd/SiO2",
"description": "Pd on SiO2, P-free reference"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_1P",
"title": "Pd/1P/SiO2",
"description": "Pd on SiO2, nominal 1 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_3P",
"title": "Pd/3P/SiO2",
"description": "Pd on SiO2, nominal 3 wt% P"
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_5P",
"title": "Pd/5P/SiO2",
"description": "Pd on SiO2, nominal 5 wt% P"
}
],
"realized_plan": {
"id": "coremeta4cat:CHAR_32x1-99x6_PXRD_method",
"title": "Powder XRD measurement method",
"description": "Two-theta scan, ~2-92 degrees, step size 0.015 degrees. One file (PXRD_1PSiO2.xy) is a Pd-free P/SiO2 support reference; one file (PXRD_Pd5Al2O3.xy) is missing the 'P' in its name but is interpreted as the nominal 5 wt% P/Al2O3 sample based on the file series context (matches ICP sample FR507)."
},
"other_identifier": [
{
"notation": "https://hdl.handle.net/21.11165/4cat/32x1-99x6"
}
],
"activity_designator": "Characterization"
}
],
"is_about_activity": [
{
"id": "coremeta4cat:REAC_32x1-99x6_CAL_Al2O3",
"reaction_name": [
"selective hydrogenation of cinnamyl alcohol"
],
"title": [
"Selective hydrogenation of cinnamyl alcohol over Pd-P/Al2O3 catalysts"
],
"description": [
"Selective hydrogenation of cinnamyl alcohol (CAL) over 6 Pd/P/Al2O3 catalysts (P loading 0-5 wt%, ~2 wt% Pd) in a Central Composite Design (27 runs) exploring temperature, pressure, phosphorus loading, and time. An initial fixed-condition screening (50C/5bar/30min, hot-filtration leaching test) gave CAL conversion/HCAL yield of 32/30% (Pd/Al2O3) and 45/42% (Pd/3P/Al2O3). Conversion ranged 6-96%, yield 6-90% across the 27-run design (catalytic_data.xlsx, 'Pd-XPAl2O3_CCD_CAL')."
],
"rdf_type": {
"id": "VOC4CAT:0000260",
"title": "hydrogenation"
},
"catalyst_type": [
"heterogeneous_catalysis"
],
"catalyst_form": [
"supported"
],
"used_catalyst": [
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_0P",
"title": "Pd/Al2O3",
"description": "Pd on Al2O3 support, unmodified (P-free) reference catalyst",
"has_physical_state": "SOLID",
"has_quantitative_attribute": [
{
"value": 119.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/SpecificArea",
"unit": "https://qudt.org/vocab/unit/M2-PER-GM",
"description": "BET specific surface area (bet_results.txt)"
}
]
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_1P",
"title": "Pd/1P/Al2O3 (nominal 1 wt% P)",
"description": "Pd on Al2O3 support, nominal 1 wt% P (phosphorus modifier)",
"has_physical_state": "SOLID",
"has_quantitative_attribute": [
{
"value": 1.8,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured Pd loading (icp_results.txt)"
},
{
"value": 0.8,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured P loading (icp_results.txt)"
},
{
"value": 118.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/SpecificArea",
"unit": "https://qudt.org/vocab/unit/M2-PER-GM",
"description": "BET specific surface area (bet_results.txt)"
}
]
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_2P",
"title": "Pd/2P/Al2O3 (nominal 2 wt% P)",
"description": "Pd on Al2O3 support, nominal 2 wt% P (phosphorus modifier)",
"has_physical_state": "SOLID",
"has_quantitative_attribute": [
{
"value": 2.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured Pd loading (icp_results.txt)"
},
{
"value": 2.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured P loading (icp_results.txt)"
},
{
"value": 116.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/SpecificArea",
"unit": "https://qudt.org/vocab/unit/M2-PER-GM",
"description": "BET specific surface area (bet_results.txt)"
}
]
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_3P",
"title": "Pd/3P/Al2O3 (nominal 3 wt% P)",
"description": "Pd on Al2O3 support, nominal 3 wt% P (phosphorus modifier)",
"has_physical_state": "SOLID",
"has_quantitative_attribute": [
{
"value": 1.8,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured Pd loading (icp_results.txt)"
},
{
"value": 2.5,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured P loading (icp_results.txt)"
},
{
"value": 105.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/SpecificArea",
"unit": "https://qudt.org/vocab/unit/M2-PER-GM",
"description": "BET specific surface area (bet_results.txt)"
}
]
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_4P",
"title": "Pd/4P/Al2O3 (nominal 4 wt% P)",
"description": "Pd on Al2O3 support, nominal 4 wt% P (phosphorus modifier)",
"has_physical_state": "SOLID",
"has_quantitative_attribute": [
{
"value": 2.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured Pd loading (icp_results.txt)"
},
{
"value": 3.7,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured P loading (icp_results.txt)"
},
{
"value": 112.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/SpecificArea",
"unit": "https://qudt.org/vocab/unit/M2-PER-GM",
"description": "BET specific surface area (bet_results.txt)"
}
]
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_5P",
"title": "Pd/5P/Al2O3 (nominal 5 wt% P)",
"description": "Pd on Al2O3 support, nominal 5 wt% P (phosphorus modifier)",
"has_physical_state": "SOLID",
"has_quantitative_attribute": [
{
"value": 1.9,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured Pd loading (icp_results.txt)"
},
{
"value": 4.6,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured P loading (icp_results.txt)"
},
{
"value": 108.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/SpecificArea",
"unit": "https://qudt.org/vocab/unit/M2-PER-GM",
"description": "BET specific surface area (bet_results.txt)"
}
]
}
],
"used_reactant": [
{
"id": "coremeta4cat:REAC_32x1-99x6_CAL_Al2O3_substrate",
"title": "cinnamyl alcohol",
"rdf_type": {
"id": "CHEBI:15554",
"title": "cinnamyl alcohol"
}
},
{
"id": "coremeta4cat:REAC_32x1-99x6_CAL_Al2O3_H2",
"title": "hydrogen",
"rdf_type": {
"id": "CHEBI:18276",
"title": "molecular hydrogen"
}
}
],
"used_reactor": [
{
"id": "coremeta4cat:REAC_32x1-99x6_CAL_Al2O3_reactor",
"title": "batch pressurized reactor",
"description": "Batch pressurised reactor (autoclave or similar sealed vessel), inferred from the 1-9 bar working pressure range and hot-filtration leaching test noted in catalytic_data.xlsx. Specific reactor model not stated in the source dataset files."
}
],
"reactor_temperature_range": [
{
"min_value": 303.15,
"max_value": 343.15,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/Temperature",
"unit": "https://qudt.org/vocab/unit/K",
"description": "Temperature range explored in the design of experiments (catalytic_data.xlsx)"
}
],
"experiment_pressure": [
{
"value": 1.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/Pressure",
"unit": "https://qudt.org/vocab/unit/BAR",
"description": "Minimum pressure in the design space"
},
{
"value": 9.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/Pressure",
"unit": "https://qudt.org/vocab/unit/BAR",
"description": "Maximum pressure in the design space"
}
],
"product_identification_method": [
{
"id": "coremeta4cat:REAC_32x1-99x6_CAL_Al2O3_product_id",
"title": "Conversion/yield quantification",
"description": "Substrate conversion and product yield (%) reported with standard deviations in catalytic_data.xlsx. Specific analytical instrument not stated in the source dataset files; GC is the standard method for this reaction class."
}
],
"other_identifier": [
{
"notation": "https://hdl.handle.net/21.11165/4cat/32x1-99x6"
}
]
},
{
"id": "coremeta4cat:REAC_32x1-99x6_CAL_SiO2",
"reaction_name": [
"selective hydrogenation of cinnamyl alcohol"
],
"title": [
"Selective hydrogenation of cinnamyl alcohol over Pd-P/SiO2 catalysts"
],
"description": [
"Selective hydrogenation of cinnamyl alcohol (CAL) over 4 Pd/P/SiO2 catalysts (P loading 0-5 wt%, ~2 wt% Pd) in a full factorial design (9 runs) exploring temperature, pressure, phosphorus loading, and time. An initial fixed-condition screening (50C/5bar/30min, hot-filtration leaching test) gave CAL conversion/HCAL yield of 23/22% (Pd/SiO2) and 78/40% (Pd/3P/SiO2). Conversion ranged 12-100%, yield 9-56% across the 9-run design (catalytic_data.xlsx, 'Pd-XPSiO2_FF_CAL')."
],
"rdf_type": {
"id": "VOC4CAT:0000260",
"title": "hydrogenation"
},
"catalyst_type": [
"heterogeneous_catalysis"
],
"catalyst_form": [
"supported"
],
"used_catalyst": [
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_0P",
"title": "Pd/SiO2",
"description": "Pd on SiO2 support, unmodified (P-free) reference catalyst",
"has_physical_state": "SOLID",
"has_quantitative_attribute": [
{
"value": 126.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/SpecificArea",
"unit": "https://qudt.org/vocab/unit/M2-PER-GM",
"description": "BET specific surface area (bet_results.txt)"
}
]
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_1P",
"title": "Pd/1P/SiO2 (nominal 1 wt% P)",
"description": "Pd on SiO2 support, nominal 1 wt% P (phosphorus modifier)",
"has_physical_state": "SOLID",
"has_quantitative_attribute": [
{
"value": 2.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured Pd loading (icp_results.txt)"
},
{
"value": 1.1,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured P loading (icp_results.txt)"
},
{
"value": 118.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/SpecificArea",
"unit": "https://qudt.org/vocab/unit/M2-PER-GM",
"description": "BET specific surface area (bet_results.txt)"
}
]
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_3P",
"title": "Pd/3P/SiO2 (nominal 3 wt% P)",
"description": "Pd on SiO2 support, nominal 3 wt% P (phosphorus modifier)",
"has_physical_state": "SOLID",
"has_quantitative_attribute": [
{
"value": 1.8,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured Pd loading (icp_results.txt)"
},
{
"value": 2.6,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured P loading (icp_results.txt)"
},
{
"value": 98.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/SpecificArea",
"unit": "https://qudt.org/vocab/unit/M2-PER-GM",
"description": "BET specific surface area (bet_results.txt)"
}
]
},
{
"id": "coremeta4cat:CAT_32x1-99x6_SiO2_5P",
"title": "Pd/5P/SiO2 (nominal 5 wt% P)",
"description": "Pd on SiO2 support, nominal 5 wt% P (phosphorus modifier)",
"has_physical_state": "SOLID",
"has_quantitative_attribute": [
{
"value": 2.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured Pd loading (icp_results.txt)"
},
{
"value": 4.8,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured P loading (icp_results.txt)"
},
{
"value": 72.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/SpecificArea",
"unit": "https://qudt.org/vocab/unit/M2-PER-GM",
"description": "BET specific surface area (bet_results.txt)"
}
]
}
],
"used_reactant": [
{
"id": "coremeta4cat:REAC_32x1-99x6_CAL_SiO2_substrate",
"title": "cinnamyl alcohol",
"rdf_type": {
"id": "CHEBI:15554",
"title": "cinnamyl alcohol"
}
},
{
"id": "coremeta4cat:REAC_32x1-99x6_CAL_SiO2_H2",
"title": "hydrogen",
"rdf_type": {
"id": "CHEBI:18276",
"title": "molecular hydrogen"
}
}
],
"used_reactor": [
{
"id": "coremeta4cat:REAC_32x1-99x6_CAL_SiO2_reactor",
"title": "batch pressurized reactor",
"description": "Batch pressurised reactor (autoclave or similar sealed vessel), inferred from the 1-9 bar working pressure range and hot-filtration leaching test noted in catalytic_data.xlsx. Specific reactor model not stated in the source dataset files."
}
],
"reactor_temperature_range": [
{
"min_value": 303.15,
"max_value": 343.15,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/Temperature",
"unit": "https://qudt.org/vocab/unit/K",
"description": "Temperature range explored in the design of experiments (catalytic_data.xlsx)"
}
],
"experiment_pressure": [
{
"value": 1.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/Pressure",
"unit": "https://qudt.org/vocab/unit/BAR",
"description": "Minimum pressure in the design space"
},
{
"value": 9.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/Pressure",
"unit": "https://qudt.org/vocab/unit/BAR",
"description": "Maximum pressure in the design space"
}
],
"product_identification_method": [
{
"id": "coremeta4cat:REAC_32x1-99x6_CAL_SiO2_product_id",
"title": "Conversion/yield quantification",
"description": "Substrate conversion and product yield (%) reported with standard deviations in catalytic_data.xlsx. Specific analytical instrument not stated in the source dataset files; GC is the standard method for this reaction class."
}
],
"other_identifier": [
{
"notation": "https://hdl.handle.net/21.11165/4cat/32x1-99x6"
}
]
},
{
"id": "coremeta4cat:REAC_32x1-99x6_Citral_Al2O3",
"reaction_name": [
"selective hydrogenation of citral"
],
"title": [
"Selective hydrogenation of citral over Pd-P/Al2O3 catalysts"
],
"description": [
"Selective hydrogenation of citral over 3 Pd/P/Al2O3 catalysts (1, 3, 5 wt% nominal P loading, ~2 wt% Pd) in a full factorial design (9 runs) exploring temperature, pressure, phosphorus loading, and time. Conversion ranged 15-85%, yield 15-65% across the 9-run design (catalytic_data.xlsx, 'Pd-XPAl2O3_FF_Citral')."
],
"rdf_type": {
"id": "VOC4CAT:0000260",
"title": "hydrogenation"
},
"catalyst_type": [
"heterogeneous_catalysis"
],
"catalyst_form": [
"supported"
],
"used_catalyst": [
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_1P",
"title": "Pd/1P/Al2O3 (nominal 1 wt% P)",
"description": "Pd on Al2O3 support, nominal 1 wt% P (phosphorus modifier)",
"has_physical_state": "SOLID",
"has_quantitative_attribute": [
{
"value": 1.8,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured Pd loading (icp_results.txt)"
},
{
"value": 0.8,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured P loading (icp_results.txt)"
},
{
"value": 118.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/SpecificArea",
"unit": "https://qudt.org/vocab/unit/M2-PER-GM",
"description": "BET specific surface area (bet_results.txt)"
}
]
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_3P",
"title": "Pd/3P/Al2O3 (nominal 3 wt% P)",
"description": "Pd on Al2O3 support, nominal 3 wt% P (phosphorus modifier)",
"has_physical_state": "SOLID",
"has_quantitative_attribute": [
{
"value": 1.8,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured Pd loading (icp_results.txt)"
},
{
"value": 2.5,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured P loading (icp_results.txt)"
},
{
"value": 105.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/SpecificArea",
"unit": "https://qudt.org/vocab/unit/M2-PER-GM",
"description": "BET specific surface area (bet_results.txt)"
}
]
},
{
"id": "coremeta4cat:CAT_32x1-99x6_Al2O3_5P",
"title": "Pd/5P/Al2O3 (nominal 5 wt% P)",
"description": "Pd on Al2O3 support, nominal 5 wt% P (phosphorus modifier)",
"has_physical_state": "SOLID",
"has_quantitative_attribute": [
{
"value": 1.9,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured Pd loading (icp_results.txt)"
},
{
"value": 4.6,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/MassFraction",
"unit": "https://qudt.org/vocab/unit/PERCENT",
"description": "ICP-AES measured P loading (icp_results.txt)"
},
{
"value": 108.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/SpecificArea",
"unit": "https://qudt.org/vocab/unit/M2-PER-GM",
"description": "BET specific surface area (bet_results.txt)"
}
]
}
],
"used_reactant": [
{
"id": "coremeta4cat:REAC_32x1-99x6_Citral_Al2O3_substrate",
"title": "citral",
"rdf_type": {
"id": "CHEBI:29085",
"title": "citral"
}
},
{
"id": "coremeta4cat:REAC_32x1-99x6_Citral_Al2O3_H2",
"title": "hydrogen",
"rdf_type": {
"id": "CHEBI:18276",
"title": "molecular hydrogen"
}
}
],
"used_reactor": [
{
"id": "coremeta4cat:REAC_32x1-99x6_Citral_Al2O3_reactor",
"title": "batch pressurized reactor",
"description": "Batch pressurised reactor (autoclave or similar sealed vessel), inferred from the 1-9 bar working pressure range and hot-filtration leaching test noted in catalytic_data.xlsx. Specific reactor model not stated in the source dataset files."
}
],
"reactor_temperature_range": [
{
"min_value": 303.15,
"max_value": 343.15,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/Temperature",
"unit": "https://qudt.org/vocab/unit/K",
"description": "Temperature range explored in the design of experiments (catalytic_data.xlsx)"
}
],
"experiment_pressure": [
{
"value": 1.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/Pressure",
"unit": "https://qudt.org/vocab/unit/BAR",
"description": "Minimum pressure in the design space"
},
{
"value": 9.0,
"has_quantity_type": "http://qudt.org/vocab/quantitykind/Pressure",
"unit": "https://qudt.org/vocab/unit/BAR",
"description": "Maximum pressure in the design space"
}
],
"product_identification_method": [
{