File size: 62,328 Bytes
76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 11c5fee 76c5ac9 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 |
[
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "Mg 2 Si 0.45 Sn 0.55 Based Thermoelectric Solid Solutions with Band Convergence\n\nMg2(1+x)Si0.45Sn0.537Sb0.013 (x = 0.04, 0.06, 0.08, 0.10, 0.12) compounds were synthesized by a B2O3 flux method.22 Elemental Mg (99%), Si (99.9%), Sn (99.5%) and Sb (99.999%) powders were utilized. All preparation steps were performed in an argon glove box. Raw powders were weighed, and thoroughly mixed in an agate mortar. The starting materials were transferred into an alumina crucible, covered by B2O3 powders and then compacted. The crucibles were placed into a chamber furnace, heated at 973 K for 10 h and finally cooled down to room temperature. The ingots were ground and sieved to ~50 \u03bcm and hot pressed in a graphite die of \u03a6 12.7 mm under a pressure of 80 MPa at 1025 K for 2 h, resulting in compact pellets for property analysis.",
"measurement_extractions": [
{
"quantity": "0.04",
"unit": null,
"measured_entity": "Mg2(1+x)Si0.45Sn0.537Sb0.013",
"measured_property": "x"
},
{
"quantity": "0.06",
"unit": null,
"measured_entity": "Mg2(1+x)Si0.45Sn0.537Sb0.013",
"measured_property": "x"
},
{
"quantity": "0.08",
"unit": null,
"measured_entity": "Mg2(1+x)Si0.45Sn0.537Sb0.013",
"measured_property": "x"
},
{
"quantity": "0.10",
"unit": null,
"measured_entity": "Mg2(1+x)Si0.45Sn0.537Sb0.013",
"measured_property": "x"
},
{
"quantity": "0.12",
"unit": null,
"measured_entity": "Mg2(1+x)Si0.45Sn0.537Sb0.013",
"measured_property": "x"
},
{
"quantity": "99%",
"unit": "%",
"measured_entity": "Elemental Mg",
"measured_property": null
},
{
"quantity": "99.9%",
"unit": "%",
"measured_entity": "Si",
"measured_property": null
},
{
"quantity": "99.5%",
"unit": "%",
"measured_entity": "Sn",
"measured_property": null
},
{
"quantity": "99.999%",
"unit": "%",
"measured_entity": "Sb",
"measured_property": null
},
{
"quantity": "973 K",
"unit": "K",
"measured_entity": "crucibles",
"measured_property": "heated"
},
{
"quantity": "10 h",
"unit": "h",
"measured_entity": "crucibles",
"measured_property": "heated"
},
{
"quantity": "50 \u03bcm",
"unit": "\u03bcm",
"measured_entity": "ingots",
"measured_property": "ground and sieved"
},
{
"quantity": "12.7 mm",
"unit": "mm",
"measured_entity": "graphite die",
"measured_property": "hot pressed"
},
{
"quantity": "80 MPa",
"unit": "MPa",
"measured_entity": "ingots were ground and sieved",
"measured_property": "pressure"
},
{
"quantity": "1025 K",
"unit": "K",
"measured_entity": "ingots were ground and sieved",
"measured_property": "hot pressed"
},
{
"quantity": "2 h",
"unit": "h",
"measured_entity": "ingots were ground and sieved",
"measured_property": "hot pressed"
}
],
"split": "val",
"docId": "101002aenm201300174",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10.1016/j.jallcom.2016.05.264\nMulti-shelled NiO hollow spheres: Easy hydrothermal synthesis and lithium storage performances\n\nSynthesis of multi-shelled NiO hollow spheres: In a typical experiment, 0.01 mol d-glucose and 0.02 mol Ni(NO3)2*6H2O were dissolved in 50 ml utrapure water. Then, the solution was homogenized by vigorous stirring. After stirring for 30 min, the resultant mixture was transferred to a 100 ml Teflon-lined autoclave followed by hydrothermal treatment at 180 degC for 20 h. The obtained products were washed and filtered off several times using utrapure water and ethanol successively, and finally dried in a vacuum oven at 80 degC for 12 h. After synthesis, the products were subjected to annealing at 270, 350, 430 or 550 degC for 3 h in air with a heating rate of 2 degC min-1 from room temperature to obtain multi-shelled NiO hollow spheres with a controlled number of shells (solid NiO sphere, double-, triple- and quadruple/quintuple-shelled NiO hollow sphere, respectively).",
"measurement_extractions": [
{
"quantity": "0.01 mol",
"unit": "mol",
"measured_entity": "d-glucose",
"measured_property": "dissolved"
},
{
"quantity": "0.02 mol",
"unit": "mol",
"measured_entity": "Ni(NO3)2*6H2O",
"measured_property": "dissolved"
},
{
"quantity": "50 ml",
"unit": "ml",
"measured_entity": "utrapure water",
"measured_property": null
},
{
"quantity": "100 ml",
"unit": "ml",
"measured_entity": "Teflon-lined autoclave",
"measured_property": null
},
{
"quantity": "180 degC",
"unit": "degC",
"measured_entity": "resultant mixture",
"measured_property": "hydrothermal treatment"
},
{
"quantity": "20 h",
"unit": "h",
"measured_entity": "resultant mixture",
"measured_property": "hydrothermal treatment"
},
{
"quantity": "80 degC",
"unit": "degC",
"measured_entity": "products",
"measured_property": "dried"
},
{
"quantity": "12 h",
"unit": "h",
"measured_entity": "products",
"measured_property": "dried"
},
{
"quantity": "270, 350, 430 or 550 degC",
"unit": "degC",
"measured_entity": "products",
"measured_property": "annealing"
},
{
"quantity": "2 degC min-1",
"unit": "degC min-1",
"measured_entity": "products",
"measured_property": "heating rate"
},
{
"quantity": "3 h",
"unit": "h",
"measured_entity": "products",
"measured_property": "annealing"
}
],
"split": "val",
"docId": "101016jjallcom201605264",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10.1016/j.jpowsour.2014.11.037\nPhase composition and electrochemical performance of sodium lithium titanates as anode materials for lithium rechargeable batteries\n\nNaxLi4-xTi6O14 (0 <= x <= 4) samples with different Na contents (x = 0, 1, 2, 3 and 4) were synthesized by a traditional solid-state method. The stoichiometric amounts of CH3COOLi*2H2O (Aladdin Chemistry), CH3COONa*3H2O (Aladdin Chemistry), TiO2 (Aladdin Chemistry) were mixed with oxalic acid dehydrate chelating agent (Aladdin Chemistry) under various Na/Li molar ratios and pretreated by high energy ball-milling in ethanol at 400 rpm rotational speed for 15 h. The obtained precursor slurry was dried at 80 degC and then calcinated at 900 degC for 10 h in air atmosphere.",
"measurement_extractions": [
{
"quantity": "400 rpm",
"unit": "rpm",
"measured_entity": "stoichiometric amounts of CH3COOLi*2H2O (Aladdin Chemistry), CH3COONa*3H2O (Aladdin Chemistry), TiO2 (Aladdin Chemistry) were mixed with oxalic acid dehydrate chelating agent",
"measured_property": "high energy ball-milling"
},
{
"quantity": "15 h",
"unit": "h",
"measured_entity": "stoichiometric amounts of CH3COOLi*2H2O (Aladdin Chemistry), CH3COONa*3H2O (Aladdin Chemistry), TiO2 (Aladdin Chemistry) were mixed with oxalic acid dehydrate chelating agent",
"measured_property": "high energy ball-milling"
},
{
"quantity": "80 degC",
"unit": "degC",
"measured_entity": "obtained precursor slurry",
"measured_property": "dried"
},
{
"quantity": "900 degC",
"unit": "degC",
"measured_entity": "obtained precursor slurry",
"measured_property": "calcinated"
},
{
"quantity": "10 h",
"unit": "h",
"measured_entity": "obtained precursor slurry",
"measured_property": "calcinated"
}
],
"split": "val",
"docId": "101016jjpowsour201411037",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10.1016/j.jpowsour.2015.12.048\nSynthesis of sub-10 nm copper sulphide rods as high-performance anode for long-cycle life Li-ion batteries\n\nCopper acetate monohydrate (analytical reagent (AR)), pyridine (AR), and sodium sulfide nonahydrate (AR) were purchased from Sigma-Aldrich. The electrolyte was purchased from Guo Tai Hua Long Company, including 1 M LiPF6 in ethylene carbonate (EC) and dimethyl carbonate (DMC) (1:1 by volume). All chemicals were used without further purification. \n\nIn a typical synthesis, 5.0 mmol of copper acetate monohydrate was dissolved into 40 mL distilled water/pyridine mixture (v:v = 1:3) and heated to 80 degC. 5.0 mmol of sodium sulfide nonahydrate was dissolved into 20 mL of distilled water. Then, sodium sulfide solution was dropped into copper acetate solution under vigorous stirring. Finally, the mixture reacted for 2 h at 80 degC. The final products was collected and washed several times by distilled water or other solvents (e.g., ethanol, pyridine), and then dried in a vacuum at 60 degC for 12 h.\n\n",
"measurement_extractions": [
{
"quantity": "1 M",
"unit": "M",
"measured_entity": "LiPF6",
"measured_property": null
},
{
"quantity": "1:1 by volume",
"unit": "by volume",
"measured_entity": "ethylene carbonate (EC) and dimethyl carbonate (DMC)",
"measured_property": null
},
{
"quantity": "5.0 mmol",
"unit": "mmol",
"measured_entity": "copper acetate monohydrate",
"measured_property": "dissolved"
},
{
"quantity": "40 mL",
"unit": "mL",
"measured_entity": "distilled water/pyridine mixture",
"measured_property": null
},
{
"quantity": "1:3",
"unit": null,
"measured_entity": "distilled water/pyridine mixture",
"measured_property": "v:v"
},
{
"quantity": "80 degC",
"unit": "degC",
"measured_entity": "5.0 mmol of copper acetate monohydrate was dissolved into 40 mL distilled water/pyridine mixture",
"measured_property": "heated"
},
{
"quantity": "5.0 mmol",
"unit": "mmol",
"measured_entity": "sodium sulfide nonahydrate",
"measured_property": "dissolved"
},
{
"quantity": "20 mL",
"unit": "mL",
"measured_entity": "distilled water",
"measured_property": null
},
{
"quantity": "2 h",
"unit": "h",
"measured_entity": "mixture",
"measured_property": "reacted"
},
{
"quantity": "80 degC",
"unit": "degC",
"measured_entity": "mixture",
"measured_property": "reacted"
},
{
"quantity": "60 degC",
"unit": "degC",
"measured_entity": "final products",
"measured_property": "dried in a vacuum"
},
{
"quantity": "12 h",
"unit": "h",
"measured_entity": "final products",
"measured_property": "dried in a vacuum"
}
],
"split": "val",
"docId": "101016jjpowsour201512048",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10.1016/j.jssc.2009.11.025\nCrystal growth, structure and magnetic properties of the double perovskites Ln2MgIrO6 (Ln=Pr, Nd, Sm-Gd)\n\nFor all compounds, the lanthanide sesquioxides, Ln2O3 (Nd, Sm, Eu, Gd), (Alfa Aesar, 99.99%) were fired at 1000 degC for 12 h prior to the reactions. Pr6O11 (Alfa Aesar, 99.9%) was converted to Pr2O3 by heating Pr6O11 at 1000 degC for 24 h under a reducing 5% H2 atmosphere. KOH (Fisher Scientific, A.C.S Reagent Grade, 99.9%), iridium powder (Engelhard, 99.99%) and MgO (Alfa Aesar, 99.998%) were used as received. Single crystals of Ln2MgIrO6 were grown from a high temperature melt of potassium hydroxide. Ln2O3 (Pr, Nd, Sm, Eu, Gd) (0.5 mmol), MgO (1 mmol), Ir (0.5 mmol), and KOH (4 g) were loaded into sealed silver tubes and heated in a box furnace to a temperature of 700 degC at 10 degC/min, held for 24 h at 700 degC, slow cooled to 600 degC at 0.2 degC/min and then allowed to cool to room temperature by turning off the furnace. The black crystals were removed from the flux matrix by dissolving the flux in water aided by sonication. The crystals were finally extracted by vacuum filtration.",
"measurement_extractions": [
{
"quantity": "99.99%",
"unit": "%",
"measured_entity": "Ln2O3",
"measured_property": null
},
{
"quantity": "1000 degC",
"unit": "degC",
"measured_entity": "Ln2O3",
"measured_property": "fired"
},
{
"quantity": "12 h",
"unit": "h",
"measured_entity": "Ln2O3",
"measured_property": "fired"
},
{
"quantity": "99.9%",
"unit": "%",
"measured_entity": "Pr6O11",
"measured_property": null
},
{
"quantity": "1000 degC",
"unit": "degC",
"measured_entity": "Pr6O11",
"measured_property": "heating"
},
{
"quantity": "24 h",
"unit": "h",
"measured_entity": "Pr6O11",
"measured_property": "heating"
},
{
"quantity": "5%",
"unit": "%",
"measured_entity": "atmosphere",
"measured_property": "H2"
},
{
"quantity": "99.9%",
"unit": "%",
"measured_entity": "KOH",
"measured_property": null
},
{
"quantity": "99.99%",
"unit": "%",
"measured_entity": "iridium powder",
"measured_property": null
},
{
"quantity": "99.998%",
"unit": "%",
"measured_entity": "MgO",
"measured_property": null
},
{
"quantity": "700 degC at 10 degC/min, held for 24 h at 700 degC",
"unit": "degC",
"measured_entity": "Ln2O3 (Pr, Nd, Sm, Eu, Gd) (0.5 mmol), MgO (1 mmol), Ir (0.5 mmol), and KOH (4 g) were loaded into sealed silver tubes",
"measured_property": "heated"
},
{
"quantity": "24 h",
"unit": "h",
"measured_entity": "Ln2O3 (Pr, Nd, Sm, Eu, Gd) (0.5 mmol), MgO (1 mmol), Ir (0.5 mmol), and KOH (4 g) were loaded into sealed silver tubes",
"measured_property": "heated"
},
{
"quantity": "0.2 degC/min",
"unit": "degC/min",
"measured_entity": "Ln2O3 (Pr, Nd, Sm, Eu, Gd) (0.5 mmol), MgO (1 mmol), Ir (0.5 mmol), and KOH (4 g) were loaded into sealed silver tubes",
"measured_property": "cooled"
},
{
"quantity": "4 g",
"unit": "g",
"measured_entity": "KOH",
"measured_property": "loaded into sealed silver tubes"
},
{
"quantity": "1 mmol",
"unit": "mmol",
"measured_entity": "MgO",
"measured_property": "loaded into sealed silver tubes"
},
{
"quantity": "10 degC/min",
"unit": "degC/min",
"measured_entity": "Ln2O3 (Pr, Nd, Sm, Eu, Gd) (0.5 mmol), MgO (1 mmol), Ir (0.5 mmol), and KOH (4 g) were loaded into sealed silver tubes",
"measured_property": "heated"
},
{
"quantity": "600 degC",
"unit": "degC",
"measured_entity": "Ln2O3 (Pr, Nd, Sm, Eu, Gd) (0.5 mmol), MgO (1 mmol), Ir (0.5 mmol), and KOH (4 g) were loaded into sealed silver tubes",
"measured_property": "cooled"
},
{
"quantity": "0.5 mmol",
"unit": "mmol",
"measured_entity": "Ir",
"measured_property": "loaded into sealed silver tubes"
},
{
"quantity": "0.5 mmol",
"unit": "mmol",
"measured_entity": "Ln2O3",
"measured_property": "loaded into sealed silver tubes"
}
],
"split": "val",
"docId": "101016jjssc200911025",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "In a typical process, 2.5 mmol La(NO3)3*6H2O, 2.24 g 50% Mn(NO3)2 solution (containing 7 mmol Mn2+), 10 mmol citric acid (C6H8O7*H2O), 45 mmol urea and 1.0 g P123 were dissolved with a mixed solvent containing 2 mL ethanol, 8 mL ethylene glycol and 2 mL H2O. After being stirred for 5 h, the obtained solution was transferred into a 70 mL stainless autoclave, and heated at 100 degC for 48 h. The solid product was washed and collected by centrifugation, then dried overnight at 60 degC. This gray product was calcined at 600 degC for 8 h in air flow to convert it to LaMnO3.",
"measurement_extractions": [
{
"quantity": "2.5 mmol",
"unit": "mmol",
"measured_entity": "La(NO3)3*6H2O",
"measured_property": "dissolved"
},
{
"quantity": "2.24 g",
"unit": "g",
"measured_entity": "50% Mn(NO3)2 solution",
"measured_property": "dissolved"
},
{
"quantity": "50%",
"unit": "%",
"measured_entity": "solution",
"measured_property": "Mn(NO3)2"
},
{
"quantity": "7 mmol",
"unit": "mmol",
"measured_entity": "Mn2+",
"measured_property": null
},
{
"quantity": "10 mmol",
"unit": "mmol",
"measured_entity": "citric acid (C6H8O7*H2O)",
"measured_property": "dissolved"
},
{
"quantity": "45 mmol",
"unit": "mmol",
"measured_entity": "urea",
"measured_property": "dissolved"
},
{
"quantity": "1.0 g",
"unit": "g",
"measured_entity": "P123",
"measured_property": "dissolved"
},
{
"quantity": "2 mL",
"unit": "mL",
"measured_entity": "solvent",
"measured_property": "ethanol"
},
{
"quantity": "8 mL",
"unit": "mL",
"measured_entity": "solvent",
"measured_property": "ethylene glycol"
},
{
"quantity": "2 mL",
"unit": "mL",
"measured_entity": "solvent",
"measured_property": "H2O"
},
{
"quantity": "70 mL",
"unit": "mL",
"measured_entity": "stainless autoclave",
"measured_property": null
},
{
"quantity": "100 degC",
"unit": "degC",
"measured_entity": "obtained solution",
"measured_property": "heated"
},
{
"quantity": "48 h",
"unit": "h",
"measured_entity": "obtained solution",
"measured_property": "heated"
},
{
"quantity": "60 degC",
"unit": "degC",
"measured_entity": "solid product",
"measured_property": "dried overnight"
},
{
"quantity": "600 degC",
"unit": "degC",
"measured_entity": "gray product",
"measured_property": "calcined"
},
{
"quantity": "8 h",
"unit": "h",
"measured_entity": "gray product",
"measured_property": "calcined"
}
],
"split": "val",
"docId": "101016jmatlet201210091",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10.1016/j.matlet.2017.01.142\nTemplate synthesis of Zn2TiO4 and Zn2Ti3O8 nanorods by hydrothermal-calcination combined processes\n0.200 mol Zn(NO3)2*6H2O and 0.015 mol La(NO3)3*6H2O were dissolved in 100 ml de-ionized water. Then 0.100 mol and 0.300 mol C4K2O9Ti*2H2O in 100 ml de-ionized water each were slowly added to the transparency solutions with keeping the pH at 10 throughout the process. These solutions were hydrothermally processed at 120 degC for 12 h. The samples were calcined at 750 degC for 5 h for further characterization.",
"measurement_extractions": [
{
"quantity": "0.200 mol",
"unit": "mol",
"measured_entity": "Zn(NO3)2*6H2O",
"measured_property": "dissolved"
},
{
"quantity": "0.015 mol",
"unit": "mol",
"measured_entity": "La(NO3)3*6H2O",
"measured_property": "dissolved"
},
{
"quantity": "100 ml",
"unit": "ml",
"measured_entity": "de-ionized water",
"measured_property": null
},
{
"quantity": "0.100 mol",
"unit": "mol",
"measured_entity": "C4K2O9Ti*2H2O",
"measured_property": "slowly added"
},
{
"quantity": "0.300 mol",
"unit": "mol",
"measured_entity": "C4K2O9Ti*2H2O",
"measured_property": "slowly added to the transparency solutions"
},
{
"quantity": "10",
"unit": null,
"measured_entity": "transparency solutions",
"measured_property": "pH"
},
{
"quantity": "100 ml",
"unit": "ml",
"measured_entity": "de-ionized water",
"measured_property": "added"
},
{
"quantity": "120 degC",
"unit": "degC",
"measured_entity": "solutions",
"measured_property": "hydrothermally processed"
},
{
"quantity": "12 h",
"unit": "h",
"measured_entity": "solutions",
"measured_property": "hydrothermally processed"
},
{
"quantity": "750 degC",
"unit": "degC",
"measured_entity": "samples",
"measured_property": "calcined"
},
{
"quantity": "5 h",
"unit": "h",
"measured_entity": "samples",
"measured_property": "calcined"
}
],
"split": "val",
"docId": "101016jmatlet201701142",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10.1016/j.molcata.2014.11.015\nKeggin type heteropoly acid, encapsulated in metal-organic framework: A heterogeneous and recyclable nanocatalyst for selective oxidation of sulfides and deep desulfurization of model fuels\nFor the synthesis of PMo@HKUST-1(I), PW@HKUST-1(II) and SiW@HKUST-1(III) catalysts, the mixture of BTC (0.21 g, 1 mmol) and 0.10 g of CTAB in absolute ethanol (14 mL) was prepared and then 0.06 g of PMo for (I), 0.1 g of PW for (II), 0.1 g of SiW for (III), and 1.45 g of copper(II) nitrate trihydrate (Cu(NO3)2*3H2O) were dissolved in distilled water (10 mL), Both solutions were combined and mixed under vigorous stirring for approximately 30 min and were aged without stirring for a further 2 days in the case of (I) and 4 days for (II and III) at room temperature. A green (I), blue (II) and light blue (III) precipitate were then collected, washed with distilled water three times and dried at 60 degC for 24 h. CTAB was removed by Soxhlet extraction with ethanol (laboratory use, Chem-Lab) which was performed for 24 h. The product was dried in air at 60 degC. The yields were 95%, 92.6% and 86.4% for (I), (II) and (III) respectively.",
"measurement_extractions": [
{
"quantity": "2 days in the case of (I) and 4 days",
"unit": "days",
"measured_entity": "solutions",
"measured_property": "aged"
},
{
"quantity": "0.1 g",
"unit": "g",
"measured_entity": "PW",
"measured_property": "dissolved"
},
{
"quantity": "0.21 g",
"unit": "g",
"measured_entity": "BTC",
"measured_property": "mixture"
},
{
"quantity": "14 mL",
"unit": "mL",
"measured_entity": "absolute ethanol",
"measured_property": null
},
{
"quantity": "1.45 g",
"unit": "g",
"measured_entity": "copper(II) nitrate trihydrate (Cu(NO3)2*3H2O)",
"measured_property": "dissolved"
},
{
"quantity": "30 min",
"unit": "min",
"measured_entity": "solutions",
"measured_property": "mixed under vigorous stirring"
},
{
"quantity": "1 mmol",
"unit": "mmol",
"measured_entity": "BTC",
"measured_property": "mixture"
},
{
"quantity": "0.1 g",
"unit": "g",
"measured_entity": "SiW",
"measured_property": "dissolved"
},
{
"quantity": "0.06 g",
"unit": "g",
"measured_entity": "PMo",
"measured_property": "dissolved"
},
{
"quantity": "0.10 g",
"unit": "g",
"measured_entity": "CTAB",
"measured_property": "mixture"
},
{
"quantity": "10 mL",
"unit": "mL",
"measured_entity": "n distilled water",
"measured_property": null
},
{
"quantity": "60 degC",
"unit": "degC",
"measured_entity": "A green (I), blue (II) and light blue (III) precipitate",
"measured_property": "dried"
},
{
"quantity": "24 h",
"unit": "h",
"measured_entity": "A green (I), blue (II) and light blue (III) precipitate",
"measured_property": "dried"
},
{
"quantity": "24 h",
"unit": "h",
"measured_entity": "Soxhlet extraction",
"measured_property": "performed"
},
{
"quantity": "60 degC",
"unit": "degC",
"measured_entity": "product",
"measured_property": "dried"
},
{
"quantity": "95%",
"unit": "%",
"measured_entity": "yields",
"measured_property": null
},
{
"quantity": "92.6%",
"unit": "%",
"measured_entity": "yields",
"measured_property": null
}
],
"split": "val",
"docId": "101016jmolcata201411015",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10.1016/j.nanoen.2014.10.008\nFormic acid-reduced ultrasmall Pd nanocrystals on graphene to provide superior electocatalytic activity and stability toward formic acid oxidation\n\nThe graphene oxide (GO) was synthesized from graphite by using a modified Hummers method [20] and [21]. The prepared graphene oxide was dried in normal vacuum at 70 degC for 12 h and then put into a glass bottle under high vacuum level at 60 degC overnight, followed by heating to 220 degC quickly. \n\nIn a typical synthesis of Pd@Graphene electrocatalyst (30% Pd), graphene 10.5 mg, poly(vinyl pyrrolidone) (PVP) 40 mg, and (NH4)2PdCl4 12 mg were dissolved in 2 mL of deionized water. The mixture was treated in an ultrasonic bath to form a uniform aqueous dispersion, then added 3 mL HCOOH and ultrasonically treated for 10 min. The obtained black power was isolated by centrifugation, cleaned by three cycles of centrifugation/washing, and oven-dried at 60 degC for more than 6 h.",
"measurement_extractions": [
{
"quantity": "70 degC",
"unit": "degC",
"measured_entity": "graphene oxide",
"measured_property": "dried"
},
{
"quantity": "12 h",
"unit": "h",
"measured_entity": "graphene oxide",
"measured_property": "dried"
},
{
"quantity": "60 degC",
"unit": "degC",
"measured_entity": "graphene oxide",
"measured_property": "high vacuum level"
},
{
"quantity": "220 degC",
"unit": "degC",
"measured_entity": "graphene oxide",
"measured_property": "heating"
},
{
"quantity": "30%",
"unit": "%",
"measured_entity": "Pd",
"measured_property": null
},
{
"quantity": "10.5 mg",
"unit": "mg",
"measured_entity": "graphene",
"measured_property": "dissolved"
},
{
"quantity": "40 mg",
"unit": "mg",
"measured_entity": "poly(vinyl pyrrolidone) (PVP)",
"measured_property": "dissolved"
},
{
"quantity": "12 mg",
"unit": "mg",
"measured_entity": "(NH4)2PdCl4",
"measured_property": "dissolved"
},
{
"quantity": "2 mL",
"unit": "mL",
"measured_entity": "deionized water",
"measured_property": null
},
{
"quantity": "3 mL",
"unit": "mL",
"measured_entity": "HCOOH",
"measured_property": "added"
},
{
"quantity": "10 min",
"unit": "min",
"measured_entity": "uniform aqueous dispersion, then added 3 mL HCOOH",
"measured_property": "ultrasonically treated"
},
{
"quantity": "60 degC",
"unit": "degC",
"measured_entity": "obtained black power",
"measured_property": "oven-dried"
},
{
"quantity": "more than 6 h",
"unit": "h",
"measured_entity": "obtained black power",
"measured_property": "oven-dried"
}
],
"split": "val",
"docId": "101016jnanoen201410008",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10.1016/j.solidstatesciences.2016.09.005\nDielectric properties of FeNbO4 ceramics prepared by the sol-gel method\n\nFeNbO4 powders were prepared using the sol-gel method. Niobium chloride (NbCl5) and iron nitrate (Fe(NO3)3*9H2O), were used as starting materials and citric acid and ethylene glycol as chelating agent and reaction medium, respectively. A suspension containing stoichiometric amounts of starting materials was previously prepared in a minor amount of hydrogen peroxide (3% V/V) and dispersed in a mixture of citric acid and ethylene glycol in a molar ratio 1:3. In order to promote the solubility, the suspension was stirred until a clear colloidal suspension was obtained. \n\nThe solution was dried at 300 degC for 24 h to evaporate the solvent and the obtained powders were thermally analysed by differential thermal analysis, performed in a Lynseis Apparatus type L92/095, in the temperature range 20-1200 degC, with a heating rate of 5 degC/min, using Al2O3 as reference. \n\nSubsequently, the dry powders were pressed into pellets, and finally heat-treated, according to the DTA results, at 500, 650, 850, 1000 and 1200 degC, using a dwell time of 4 h, with a heating rate of 5 oC/min.",
"measurement_extractions": [
{
"quantity": "3% V/V",
"unit": "% V/V",
"measured_entity": "suspension",
"measured_property": "hydrogen peroxide"
},
{
"quantity": "1:3",
"unit": null,
"measured_entity": "citric acid and ethylene glycol",
"measured_property": "molar ratio"
},
{
"quantity": "20-1200 degC",
"unit": "degC",
"measured_entity": "powders were thermally analysed",
"measured_property": "temperature range"
},
{
"quantity": "5 degC/min",
"unit": "degC/min",
"measured_entity": "powders",
"measured_property": "heating rate"
},
{
"quantity": "300 degC",
"unit": "degC",
"measured_entity": "solution",
"measured_property": "dried"
},
{
"quantity": "24 h",
"unit": "h",
"measured_entity": "solution",
"measured_property": "dried"
},
{
"quantity": "500, 650, 850, 1000 and 1200 degC",
"unit": "degC",
"measured_entity": "pellets",
"measured_property": "heat-treated"
},
{
"quantity": "4 h",
"unit": "h",
"measured_entity": "pellets",
"measured_property": "heat-treated"
},
{
"quantity": "5 oC/min",
"unit": "oC/min",
"measured_entity": "pellets",
"measured_property": "heating rate"
}
],
"split": "val",
"docId": "101016jsolidstatesciences201609005",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "A series of polycrystalline samples of SrMo1-xNixO4(0.02<=x<=0.08) were prepared through the conventional solid-state reaction method in air. Appropriate proportions of high-purity SrCO3, MoO3, and Ni powders were thoroughly mixed according to the desired stoichiometry, and then prefired at 900 [ ?]C for 24 h. ?]C for 24 h with intermediate grinding twice. White compounds, SrMo1-xNixO4, were obtained. The compounds were ground and pressed into small pellets about 10 mm diameter and 2 mm thickness.",
"measurement_extractions": [
{
"quantity": "900",
"unit": null,
"measured_entity": "high-purity SrCO3, MoO3, and Ni powders",
"measured_property": "prefired"
},
{
"quantity": "24 h",
"unit": "h",
"measured_entity": null,
"measured_property": null
},
{
"quantity": "24 h",
"unit": "h",
"measured_entity": null,
"measured_property": null
},
{
"quantity": "10 mm",
"unit": "mm",
"measured_entity": "pellets",
"measured_property": "diameter"
},
{
"quantity": "2 mm",
"unit": "mm",
"measured_entity": "pellets",
"measured_property": "thickness"
}
],
"split": "val",
"docId": "101016jssc200704044",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "Stoichiometric amounts of Ln(NO3)3*6H2O(Aldrich, 99.9%, metal basis), Ba(NO3)2 (Aldrich, 99+%), Sr(NO3)2 (Aldrich, 99+%), Co(NO3)2*6H2O (Aldrich, 98+%), and Fe(NO3)3*6H2O (Aldrich, 98%) were dissolved in distilled water with proper amount of glycine. The solutions were heated up to 350degC in air and followed by combustion to form fine powders, which were calcined at 600degC for 4 hours. The resulting powders were then grinded and calcined again at 900degC for 4 hours.",
"measurement_extractions": [
{
"quantity": "99.9%",
"unit": "%",
"measured_entity": "Ln(NO3)3*6H2O",
"measured_property": null
},
{
"quantity": "99+%",
"unit": "%",
"measured_entity": "Sr(NO3)2",
"measured_property": null
},
{
"quantity": "98+%",
"unit": "%",
"measured_entity": "Co(NO3)2*6H2O",
"measured_property": null
},
{
"quantity": "98%",
"unit": "%",
"measured_entity": "Fe(NO3)3*6H2O",
"measured_property": null
},
{
"quantity": "up to 350degC",
"unit": "degC",
"measured_entity": "solutions",
"measured_property": "heated"
},
{
"quantity": "600degC",
"unit": "degC",
"measured_entity": "fine powders",
"measured_property": "calcined"
},
{
"quantity": "4 hours",
"unit": "hours",
"measured_entity": "fine powders",
"measured_property": "calcined"
},
{
"quantity": "900degC",
"unit": "degC",
"measured_entity": "resulting powders",
"measured_property": "calcined"
},
{
"quantity": "4 hours",
"unit": "hours",
"measured_entity": "resulting powders",
"measured_property": "calcined"
}
],
"split": "val",
"docId": "101038srep02426",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10.1039/c4cy00360h\nCatalytic consequences of micropore topology, mesoporosity, and acidity on the hydrolysis of sucrose over zeolite catalysts\nThe conventional microporous FER, MFI, MOR, BEA, and FAU with different acidity (Si/Al ratio) were purchased from Zeolyst. MWW and PMWW were derived from the same precursor, MWW (P). The hydrothermal synthesis of MWW (P) was carried out by using the method described by Corma et al.39,40 One portion of the crystalline product MWW (P) was dried and calcined to produce MWW. The other portion of MWW (P) was swollen according to the method developed by Maheshwari et al.,41 followed by pillaring of the swollen materials using the procedure reported by Barth et al.38 The resulting solid was treated using the same conditions as those for MWW to produce PMWW. A multilamellar MFI was synthesized using the method reported by Ryoo and co-workers,43 through a coherent assembly of the zeolite layer and the structure directing agent, a diquaternary ammonium surfactant with a relatively long hydrocarbon chain. Pillaring of multilamellar MFI was done as reported by Na et al.42 to produce PMFI, using a similar pillaring procedure to that of swollen MWW (P). The as-synthesized MWW and MFI zeolites were ion-exchanged four times using 1 mol L-1 aqueous NH4NO3 (weight ratio of zeolite to NH4NO3 solution = 1:10) at 353 K for 12 h and subsequently collected by vacuum filtration, washed with deionized (DI) water three times, and dried at 343 K overnight. No ion-exchange process was applied to the commercial zeolites since they were purchased in the NH4+-form. All zeolite samples in their NH4+-form were treated in dry air (100 mL min-1, ultrapure, Airgas) by increasing the temperature from ambient temperature to 823 K at 1.45 K min-1 and holding for 4 h to thermally decompose NH4+ to NH3 and H+. To differentiate the same type of zeolite with different Si/Al ratios, each catalyst is named by its structure type and Si/Al ratio in the remainder of this paper.",
"measurement_extractions": [
{
"quantity": "1 mol L-1",
"unit": "mol L-1",
"measured_entity": "aqueous NH4NO3",
"measured_property": null
},
{
"quantity": "1:10",
"unit": null,
"measured_entity": "zeolite to NH4NO3 solution",
"measured_property": "weight ratio"
},
{
"quantity": "353 K",
"unit": "K",
"measured_entity": "as-synthesized MWW and MFI zeolites",
"measured_property": "ion-exchanged"
},
{
"quantity": "12 h",
"unit": "h",
"measured_entity": "as-synthesized MWW and MFI zeolites",
"measured_property": "ion-exchanged"
},
{
"quantity": "343 K",
"unit": "K",
"measured_entity": "as-synthesized MWW and MFI zeolites",
"measured_property": "dried"
},
{
"quantity": "four times",
"unit": "times",
"measured_entity": "as-synthesized MWW and MFI zeolites",
"measured_property": "ion-exchanged"
},
{
"quantity": "three times",
"unit": "times",
"measured_entity": "deionized (DI) water",
"measured_property": null
},
{
"quantity": "100 mL min-1",
"unit": "mL min-1",
"measured_entity": "zeolite samples in their NH4+-form",
"measured_property": "treated"
},
{
"quantity": "823 K",
"unit": "K",
"measured_entity": "zeolite samples in their NH4+-form",
"measured_property": "temperature"
},
{
"quantity": "1.45 K min-1",
"unit": "K min-1",
"measured_entity": "zeolite samples in their NH4+-form",
"measured_property": "increasing the temperature"
},
{
"quantity": "4 h",
"unit": "h",
"measured_entity": "zeolite samples in their NH4+-form",
"measured_property": "holding"
}
],
"split": "val",
"docId": "101039c4cy00360h",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "PrBa 0.8 Ca 0.2 Mn 2 O 5+\u03b4\nIn order to fabricate a La0.9Sr0.1Ga0.8Mg0.2O3-\u03b4 (LSGM) electrolyte supported cell, the LSGM powder was prepared by the solid state reaction method and a dense electrolyte substrate was prepared by dry pressing followed by sintering at 1475 degC. Stoichiometric amounts of La2O3 (Sigma 99.99%), SrCO3 (Sigma, 99.99%), Ga2O3 (Sigma, 99.99%), and MgO (Sigma, 99.9%) powders were ball milled in ethanol for 24 h. After drying, the mixture was calcined for 6 h. The thickness of the LSGM electrolyte was adjusted to about 250 \u03bcm by polishing. LDC (La0.4Ce0.6O2-\u03b4) was also prepared by ball milling stoichiometric amounts of La2O3 and CeO2 (Sigma, 99.99%) in ethanol and then calcined for 6 h. For the preparation of the electrode slurry, disordered Pr0.5Ba0.4Ca0.1MnO3 was mixed with an organic binder, V-006. The Pr0.5Ba0.4Ca0.1MnO3 slurry was applied on both sides of the LSGM pellet by the screen printing method, and then fired at 950 degC in air for 4 h.",
"measurement_extractions": [
{
"quantity": "1475 degC",
"unit": "degC",
"measured_entity": "sintering",
"measured_property": null
},
{
"quantity": "99.99%",
"unit": "%",
"measured_entity": "La2O3",
"measured_property": null
},
{
"quantity": "99.99%",
"unit": "%",
"measured_entity": "SrCO3",
"measured_property": null
},
{
"quantity": "99.99%",
"unit": "%",
"measured_entity": "Ga2O3",
"measured_property": null
},
{
"quantity": "99.9%",
"unit": "%",
"measured_entity": "MgO",
"measured_property": null
},
{
"quantity": "24 h",
"unit": "h",
"measured_entity": "Stoichiometric amounts of La2O3 (Sigma 99.99%), SrCO3 (Sigma, 99.99%), Ga2O3 (Sigma, 99.99%), and MgO (Sigma, 99.9%) powders",
"measured_property": "ball milled in ethanol"
},
{
"quantity": "6 h",
"unit": "h",
"measured_entity": "mixture",
"measured_property": "calcined"
},
{
"quantity": "250 \u03bcm",
"unit": "\u03bcm",
"measured_entity": "LSGM electrolyte",
"measured_property": "thickness"
},
{
"quantity": "99.99%",
"unit": "%",
"measured_entity": "CeO2",
"measured_property": null
},
{
"quantity": "6 h",
"unit": "h",
"measured_entity": "ball milling stoichiometric amounts of La2O3 and CeO2 (Sigma, 99.99%) in ethanol",
"measured_property": "calcined"
},
{
"quantity": "950 degC",
"unit": "degC",
"measured_entity": "Pr0.5Ba0.4Ca0.1MnO3 slurry was applied on both sides of the LSGM pellet",
"measured_property": "fired"
},
{
"quantity": "4 h",
"unit": "h",
"measured_entity": "Pr0.5Ba0.4Ca0.1MnO3 slurry was applied on both sides of the LSGM pellet",
"measured_property": "fired"
}
],
"split": "val",
"docId": "101039c5ta08878j",
"dataset": "msp"
},
{
"instruction": "\n You are an expert at extracting quantity, units and their related context from text. \n Given a paragraph below identify each quantity and its related unit and related context, i.e. the measured entity and measured property if they exist.\n ",
"paragraph": "10.1039/c5tc00196j\nA facile fabrication of large-scale reduced graphene oxide-silver nanoparticle hybrid film as a highly active surface-enhanced Raman scattering substrate\nNatural graphite flake (99.8% purity), silver nitrate (AgNO3, >99%), and sodium citrate tribasic dehydrate (>=99.0% purity) were purchased from Sigma-Aldrich. R6G and MA were obtained from J&K Scientific Ltd (Beijing, China). H2SO4 (95-98 wt%) and KMnO4 (99.5% purity) were purchased from Beijing Chemical Co., Ltd (Beijing, China). H3PO4 (85% purity) and H2O2 (30% aqueous solution) were obtained from Xilong Chemical Co., Ltd. All chemicals used in this work were of analytical reagent grade and obtained from commercial sources and directly used without additional purification. The water used was purified through a Millipore system (~18.2 M\u03a9 cm-1). Carbon-coated Cu grids for transmission electron microscopy (TEM) characterization were purchased from Plano GmbH (Wetzlar, Germany). \nGO was synthesized by the oxidation of natural graphite flakes using a modified Hummers method to produce graphite oxide.31 In detail, 3 g of graphite flakes were mixed with a mixture of concentrated H2SO4/H3PO4 (9:1) under stirring at room temperature; KMnO4 (18 g) was added slowly by stirring, and the mixture was incubated and stirred in the thermostatic water bath for 12 h (50 degC). The mixture was poured slowly onto ice crush (200 mL) and 10% hydrogen peroxide (10 mL) when the temperature was decreased to room temperature. Then the mixture was centrifuged (4000 rpm for 0.5 h), and the remaining solid material was washed in succession with 400 mL of water, 400 mL of 30% hydrochloric acid, and 400 mL of ethanol (2x). The remaining material was filtered and vacuum-dried overnight at room temperature. Finally, 5.8 g of the product was obtained. \nAgNPs were synthesized according to the literature previously reported.32 In a typical synthesis, 100 mL of aqueous AgNO3 (0.5 mmol) was added into a 250 mL flask and heated to boil under punchy stirring in an oil bath. After that, 10 mL aqueous sodium citrate (1%) was added, and the color of the solution reached to yellow after 1 h, which indicates the formation of AgNPs.",
"measurement_extractions": [
{
"quantity": "99.8%",
"unit": "%",
"measured_entity": "Natural graphite flake",
"measured_property": "purity"
},
{
"quantity": ">99%",
"unit": "%",
"measured_entity": "silver nitrate (AgNO3",
"measured_property": null
},
{
"quantity": ">=99.0%",
"unit": "%",
"measured_entity": "sodium citrate tribasic dehydrate",
"measured_property": "purity"
},
{
"quantity": "95-98 wt%",
"unit": "wt%",
"measured_entity": "H2SO4",
"measured_property": null
},
{
"quantity": "99.5%",
"unit": "%",
"measured_entity": "KMnO4",
"measured_property": "purity"
},
{
"quantity": "85%",
"unit": "%",
"measured_entity": "H3PO4",
"measured_property": "purity"
},
{
"quantity": "30%",
"unit": "%",
"measured_entity": "H2O2",
"measured_property": null
},
{
"quantity": "~18.2 M\u03a9 cm-1",
"unit": "M\u03a9 cm-1",
"measured_entity": "water",
"measured_property": "purified through a Millipore system"
},
{
"quantity": "3 g",
"unit": "g",
"measured_entity": "graphite flakes",
"measured_property": "mixed"
},
{
"quantity": "9:1",
"unit": null,
"measured_entity": "H2SO4/H3PO4",
"measured_property": null
},
{
"quantity": "18 g",
"unit": "g",
"measured_entity": "KMnO4",
"measured_property": "added"
},
{
"quantity": "12 h",
"unit": "h",
"measured_entity": "mixture",
"measured_property": "stirred"
},
{
"quantity": "50 degC",
"unit": "degC",
"measured_entity": "mixture",
"measured_property": "stirred"
},
{
"quantity": "200 mL",
"unit": "mL",
"measured_entity": "ice crush",
"measured_property": null
},
{
"quantity": "10%",
"unit": "%",
"measured_entity": "hydrogen peroxide",
"measured_property": null
},
{
"quantity": "10 mL",
"unit": "mL",
"measured_entity": "hydrogen peroxide",
"measured_property": null
},
{
"quantity": "4000 rpm",
"unit": "rpm",
"measured_entity": "mixture",
"measured_property": "centrifuged"
},
{
"quantity": "0.5 h",
"unit": "h",
"measured_entity": "mixture",
"measured_property": "centrifuged"
},
{
"quantity": "400 mL",
"unit": "mL",
"measured_entity": "water",
"measured_property": null
},
{
"quantity": "400 mL",
"unit": "mL",
"measured_entity": "30% hydrochloric acid",
"measured_property": null
},
{
"quantity": "30%",
"unit": "%",
"measured_entity": "hydrochloric acid",
"measured_property": null
},
{
"quantity": "400 mL",
"unit": "mL",
"measured_entity": "ethanol",
"measured_property": null
},
{
"quantity": "5.8 g",
"unit": "g",
"measured_entity": "product",
"measured_property": "obtained"
},
{
"quantity": "100 mL",
"unit": "mL",
"measured_entity": "AgNO3",
"measured_property": "added"
},
{
"quantity": "0.5 mmol",
"unit": "mmol",
"measured_entity": "AgNO3",
"measured_property": "added"
},
{
"quantity": "250 mL",
"unit": "mL",
"measured_entity": "flask",
"measured_property": null
},
{
"quantity": "10 mL",
"unit": "mL",
"measured_entity": "sodium citrate",
"measured_property": "added"
},
{
"quantity": "1%",
"unit": "%",
"measured_entity": "sodium citrate",
"measured_property": "added"
},
{
"quantity": "1 h",
"unit": "h",
"measured_entity": "solution",
"measured_property": "reached to yellow"
}
],
"split": "val",
"docId": "101039c5tc00196j",
"dataset": "msp"
}
] |